diff options
author | zeroinformatique | 2021-07-02 18:08:13 +0200 |
---|---|---|
committer | GitHub | 2021-07-02 18:08:13 +0200 |
commit | 08ac32103fb5f8cca1861267dfd07a7c0d2faf62 (patch) | |
tree | 6e70da08a58890eac806d98a127551e9f67994a9 /viewer/src/store/galleryStore.ts | |
parent | 1cf6dd4243a72935d382d62bb2a79ff13186e70d (diff) | |
parent | 90b0994ea7be0052fc6d868c98e1de8c835f2ba1 (diff) | |
download | ldgallery-08ac32103fb5f8cca1861267dfd07a7c0d2faf62.tar.gz |
Merge pull request #299 from ldgallery/oz-yarn
viewer: compilation chain upgrade
Diffstat (limited to 'viewer/src/store/galleryStore.ts')
-rw-r--r-- | viewer/src/store/galleryStore.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/store/galleryStore.ts b/viewer/src/store/galleryStore.ts index 5d599aa..6d64e12 100644 --- a/viewer/src/store/galleryStore.ts +++ b/viewer/src/store/galleryStore.ts | |||
@@ -126,7 +126,7 @@ export default class GalleryStore extends VuexModule { | |||
126 | } | 126 | } |
127 | 127 | ||
128 | private static getUrlConfig() { | 128 | private static getUrlConfig() { |
129 | let search = window.location.search; | 129 | const search = window.location.search; |
130 | if (search.length > 1) return search.substr(1) + ".json"; | 130 | if (search.length > 1) return search.substr(1) + ".json"; |
131 | return "config.json"; | 131 | return "config.json"; |
132 | } | 132 | } |