diff --git a/js/app.js b/js/app.js index 8013014..5b25110 100644 --- a/js/app.js +++ b/js/app.js @@ -39,7 +39,7 @@ const TimeTrack = { this.ticketSystemUrl = storedticketSystemUrl == null ? '' : storedticketSystemUrl; let storedShowPT = localStorage.getItem('showPT'); - this.showPT = storedShowPT == null ? true : storedShowPT; + this.showPT = (storedShowPT == null || false) ? true : storedShowPT; let storedTheme = localStorage.getItem('theme'); this.theme = storedTheme == null ? 'materia' : storedTheme;