Browse Source

Fix storage;

modals-to-spa
Nero Ignis 4 years ago
parent
commit
5caf79b88a
  1. 2
      js/app.js

2
js/app.js

@ -39,7 +39,7 @@ const TimeTrack = { @@ -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;