diff options
author | Zero~Informatique | 2020-06-28 14:03:04 +0200 |
---|---|---|
committer | Zero~Informatique | 2020-06-28 14:11:44 +0200 |
commit | 303929136ca6446f538fcfc80ce26626c726f759 (patch) | |
tree | 4a88ad565d0feb8f4db0b55a5c1403a06db2ad94 /viewer/src/services/indexfactory.ts | |
parent | 170d7a61f720ece9dc4b347b19f5a8213f1d8984 (diff) | |
download | ldgallery-303929136ca6446f538fcfc80ce26626c726f759.tar.gz |
viewer: dependancies update
Diffstat (limited to 'viewer/src/services/indexfactory.ts')
-rw-r--r-- | viewer/src/services/indexfactory.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/services/indexfactory.ts b/viewer/src/services/indexfactory.ts index c4b6d51..4b28a60 100644 --- a/viewer/src/services/indexfactory.ts +++ b/viewer/src/services/indexfactory.ts | |||
@@ -23,7 +23,7 @@ import Navigation from "@/services/navigation"; | |||
23 | 23 | ||
24 | export default class IndexFactory { | 24 | export default class IndexFactory { |
25 | public static generateTags(root: Gallery.Item | null): Tag.Index { | 25 | public static generateTags(root: Gallery.Item | null): Tag.Index { |
26 | let tagsIndex: Tag.Index = {}; | 26 | const tagsIndex: Tag.Index = {}; |
27 | if (root) IndexFactory.pushTagsForItem(tagsIndex, root); | 27 | if (root) IndexFactory.pushTagsForItem(tagsIndex, root); |
28 | return tagsIndex; | 28 | return tagsIndex; |
29 | } | 29 | } |