aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/store/uiStore.ts
diff options
context:
space:
mode:
authorZero~Informatique2020-06-20 16:50:49 +0200
committerOzoneGrif2020-06-28 14:11:13 +0200
commit170d7a61f720ece9dc4b347b19f5a8213f1d8984 (patch)
tree3a7af0595faea4a98437f8f73b3172529bda3a1d /viewer/src/store/uiStore.ts
parent06355c9cebce469d3d827d48043387144c2458a5 (diff)
downloadldgallery-170d7a61f720ece9dc4b347b19f5a8213f1d8984.tar.gz
viewer: prettier formatting based on eslint-prettier plugin
Diffstat (limited to 'viewer/src/store/uiStore.ts')
-rw-r--r--viewer/src/store/uiStore.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/viewer/src/store/uiStore.ts b/viewer/src/store/uiStore.ts
index 892d35e..91ac338 100644
--- a/viewer/src/store/uiStore.ts
+++ b/viewer/src/store/uiStore.ts
@@ -21,11 +21,10 @@ import { createModule, mutation, action } from "vuex-class-component";
21 21
22const VuexModule = createModule({ 22const VuexModule = createModule({
23 namespaced: "uiStore", 23 namespaced: "uiStore",
24 strict: true 24 strict: true,
25}) 25});
26 26
27export default class UIStore extends VuexModule { 27export default class UIStore extends VuexModule {
28
29 fullscreen: boolean = false; 28 fullscreen: boolean = false;
30 fullWidth: boolean = window.innerWidth < Number(process.env.VUE_APP_FULLWIDTH_LIMIT); 29 fullWidth: boolean = window.innerWidth < Number(process.env.VUE_APP_FULLWIDTH_LIMIT);
31 searchMode: boolean = false; 30 searchMode: boolean = false;