diff options
Diffstat (limited to 'viewer/src/views/GalleryNavigation.vue')
-rw-r--r-- | viewer/src/views/GalleryNavigation.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/viewer/src/views/GalleryNavigation.vue b/viewer/src/views/GalleryNavigation.vue index 69198f6..8bb225a 100644 --- a/viewer/src/views/GalleryNavigation.vue +++ b/viewer/src/views/GalleryNavigation.vue | |||
@@ -26,10 +26,10 @@ | |||
26 | </template> | 26 | </template> |
27 | 27 | ||
28 | <script lang="ts"> | 28 | <script lang="ts"> |
29 | import { Component, Vue, Prop, Watch } from "vue-property-decorator"; | ||
30 | import { ItemType } from "@/@types/ItemType"; | 29 | import { ItemType } from "@/@types/ItemType"; |
31 | import Navigation from "@/services/navigation"; | 30 | import Navigation from "@/services/navigation"; |
32 | import GallerySearch from "@/views/GallerySearch.vue"; | 31 | import GallerySearch from "@/views/GallerySearch.vue"; |
32 | import { Component, Prop, Vue, Watch } from "vue-property-decorator"; | ||
33 | 33 | ||
34 | @Component({ | 34 | @Component({ |
35 | components: { | 35 | components: { |
@@ -41,13 +41,13 @@ export default class GalleryNavigation extends Vue { | |||
41 | @Prop(Array) readonly query!: string[]; | 41 | @Prop(Array) readonly query!: string[]; |
42 | 42 | ||
43 | readonly COMPONENT_BY_TYPE: Record<ItemType, string> = { | 43 | readonly COMPONENT_BY_TYPE: Record<ItemType, string> = { |
44 | directory: "ld-directory", | 44 | directory: "ld-directory-viewer", |
45 | picture: "ld-picture", | 45 | picture: "ld-picture-viewer", |
46 | plaintext: "ld-plain-text-viewer", | 46 | plaintext: "ld-plain-text-viewer", |
47 | pdf: "ld-pdf-viewer", | 47 | pdf: "ld-pdf-viewer", |
48 | video: "ld-video-viewer", | 48 | video: "ld-video-viewer", |
49 | audio: "ld-audio-viewer", | 49 | audio: "ld-audio-viewer", |
50 | other: "ld-download", | 50 | other: "ld-download-viewer", |
51 | }; | 51 | }; |
52 | 52 | ||
53 | mounted() { | 53 | mounted() { |