diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 16:31:00 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 16:31:00 +0900 |
| commit | 57c3ea3dbeff25b2805b7aea18a720ca68e8f66c (patch) | |
| tree | 872e25463704408332cfb87eb052417a94fd3889 /src/client | |
| parent | chore(lint): Add semicolon rule (diff) | |
| download | sharkey-57c3ea3dbeff25b2805b7aea18a720ca68e8f66c.tar.gz sharkey-57c3ea3dbeff25b2805b7aea18a720ca68e8f66c.tar.bz2 sharkey-57c3ea3dbeff25b2805b7aea18a720ca68e8f66c.zip | |
chore(lint): Add missing semicolon
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/init.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/init.ts b/src/client/init.ts index 29fc219740..500092061a 100644 --- a/src/client/init.ts +++ b/src/client/init.ts @@ -146,7 +146,7 @@ os.init(async () => { } else if (e.key === 'i') { location.reload(); } - }, false) + }, false); store.watch(state => state.device.darkMode, darkMode => { import('./theme').then(({ builtinThemes }) => { |