aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/PanelLeft.vue
diff options
context:
space:
mode:
authorZero~Informatique2021-07-02 22:59:56 +0200
committerZero~Informatique2021-07-03 00:05:22 +0200
commit92cb34b719b481faf417760f307241e8f6d777a9 (patch)
treeba33af35b8bb07e6c1c19b84f6c3af37c791584c /viewer/src/views/PanelLeft.vue
parent9165cc1efcf7791f78b61b2c51a9de651b1b09aa (diff)
downloadldgallery-92cb34b719b481faf417760f307241e8f6d777a9.tar.gz
viewer: types normalization - tag.d.ts
GitHub: closes #301
Diffstat (limited to 'viewer/src/views/PanelLeft.vue')
-rw-r--r--viewer/src/views/PanelLeft.vue3
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">
51import { TagSearch } from "@/@types/tag";
51import Navigation from "@/services/navigation"; 52import Navigation from "@/services/navigation";
52import { Component, Vue, Watch } from "vue-property-decorator"; 53import { Component, Vue, Watch } from "vue-property-decorator";
53import { Dictionary, Route } from "vue-router/types/router"; 54import { Dictionary, Route } from "vue-router/types/router";
54 55
55@Component 56@Component
56export default class PanelLeft extends Vue { 57export 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() {