diff options
Diffstat (limited to 'viewer/src/views')
-rw-r--r-- | viewer/src/views/PanelLeft.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue index 5c42fa9..ea61865 100644 --- a/viewer/src/views/PanelLeft.vue +++ b/viewer/src/views/PanelLeft.vue | |||
@@ -48,13 +48,14 @@ | |||
48 | </template> | 48 | </template> |
49 | 49 | ||
50 | <script lang="ts"> | 50 | <script lang="ts"> |
51 | import { TagSearch } from "@/@types/tag"; | ||
51 | import Navigation from "@/services/navigation"; | 52 | import Navigation from "@/services/navigation"; |
52 | import { Component, Vue, Watch } from "vue-property-decorator"; | 53 | import { Component, Vue, Watch } from "vue-property-decorator"; |
53 | import { Dictionary, Route } from "vue-router/types/router"; | 54 | import { Dictionary, Route } from "vue-router/types/router"; |
54 | 55 | ||
55 | @Component | 56 | @Component |
56 | export default class PanelLeft extends Vue { | 57 | export default class PanelLeft extends Vue { |
57 | searchFilters: Tag.Search[] = []; | 58 | searchFilters: TagSearch[] = []; |
58 | infoOpen: boolean = true; | 59 | infoOpen: boolean = true; |
59 | 60 | ||
60 | mounted() { | 61 | mounted() { |