diff options
author | Zero~Informatique | 2020-09-11 20:10:56 +0200 |
---|---|---|
committer | G.Fouet | 2020-09-11 21:53:18 +0200 |
commit | f89ed0bd94ea570d9e6533301783d13b13033db0 (patch) | |
tree | 668596be054bf064334553a32f20fc83302a51d8 /viewer/src/store | |
parent | 12b8f20f3dc1cdbda820808755545a8ce1382123 (diff) | |
download | ldgallery-f89ed0bd94ea570d9e6533301783d13b13033db0.tar.gz |
viewer: PR #238 code review changes
Diffstat (limited to 'viewer/src/store')
-rw-r--r-- | viewer/src/store/uiStore.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/store/uiStore.ts b/viewer/src/store/uiStore.ts index 1fe9f49..2d583fc 100644 --- a/viewer/src/store/uiStore.ts +++ b/viewer/src/store/uiStore.ts | |||
@@ -31,7 +31,7 @@ export default class UIStore extends VuexModule { | |||
31 | fullscreen: boolean = false; | 31 | fullscreen: boolean = false; |
32 | fullWidth: boolean = window.innerWidth < Number(process.env.VUE_APP_FULLWIDTH_LIMIT); | 32 | fullWidth: boolean = window.innerWidth < Number(process.env.VUE_APP_FULLWIDTH_LIMIT); |
33 | searchMode: boolean = false; | 33 | searchMode: boolean = false; |
34 | sortFn: TItemSortFn = ItemSortFn.sortByName; | 34 | sortFn: TItemSortFn = ItemSortFn.sortByNameAsc; |
35 | 35 | ||
36 | // --- | 36 | // --- |
37 | 37 | ||