diff options
author | OzoneGrif | 2020-01-31 02:26:12 +0100 |
---|---|---|
committer | GitHub | 2020-01-31 02:26:12 +0100 |
commit | d94b987463169b254ab69a79ddb58e5beccb0941 (patch) | |
tree | 51f66cdada6a8e920ba80a3aae76393e0127d825 /viewer/src/store/galleryStore.ts | |
parent | 15c806adec22239096a910b92b49fcfb964815bd (diff) | |
parent | 2157b66f3ea43137391939992cac4dc901a4ac4e (diff) | |
download | ldgallery-d94b987463169b254ab69a79ddb58e5beccb0941.tar.gz |
Merge pull request #65 from pacien/oz-viewer
viewer improvements
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 663340f..b2ff74e 100644 --- a/viewer/src/store/galleryStore.ts +++ b/viewer/src/store/galleryStore.ts | |||
@@ -61,7 +61,7 @@ export default class GalleryStore extends VuexModule { | |||
61 | 61 | ||
62 | // Fetches the gallery's JSON metadata | 62 | // Fetches the gallery's JSON metadata |
63 | @action async fetchGalleryItems(url: string) { | 63 | @action async fetchGalleryItems(url: string) { |
64 | fetch(url) | 64 | return fetch(url) |
65 | .then(response => response.json()) | 65 | .then(response => response.json()) |
66 | .then(this.setGalleryItemsRoot) | 66 | .then(this.setGalleryItemsRoot) |
67 | .then(this.indexTags); | 67 | .then(this.indexTags); |