change(ui): mouse trail setting defualt to true
This commit is contained in:
parent
d07c688b1b
commit
cd206c2591
1 changed files with 3 additions and 0 deletions
|
|
@ -80,6 +80,9 @@ export default class SessionSettings {
|
|||
|
||||
this.timezoneFix(defaultTimezone);
|
||||
this.timezone = JSON.parse(localStorage.getItem(TIMEZONE)) || defaultTimezone;
|
||||
if (localStorage.getItem(MOUSE_TRAIL) === null) {
|
||||
localStorage.setItem(MOUSE_TRAIL, 'true');
|
||||
}
|
||||
makeAutoObservable(this);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue