diff options
author | zeroinformatique | 2021-07-03 00:48:53 +0200 |
---|---|---|
committer | GitHub | 2021-07-03 00:48:53 +0200 |
commit | b6605e2c4ee73ac8b994624098344db5e44ac07d (patch) | |
tree | 5ed06cc5ecdabe070f6fdb9bc4f9a8a3b435cbe6 /viewer/src/views/PanelLeft.vue | |
parent | 08ac32103fb5f8cca1861267dfd07a7c0d2faf62 (diff) | |
parent | 1f0377c1b4c2959c73fe4e368673f057ef369917 (diff) | |
download | ldgallery-b6605e2c4ee73ac8b994624098344db5e44ac07d.tar.gz |
Merge pull request #302 from ldgallery/oz-types-normalization
viewer: types normalization
Diffstat (limited to 'viewer/src/views/PanelLeft.vue')
-rw-r--r-- | viewer/src/views/PanelLeft.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue index d2a3656..ea61865 100644 --- a/viewer/src/views/PanelLeft.vue +++ b/viewer/src/views/PanelLeft.vue | |||
@@ -48,14 +48,14 @@ | |||
48 | </template> | 48 | </template> |
49 | 49 | ||
50 | <script lang="ts"> | 50 | <script lang="ts"> |
51 | import { Component, Vue, Prop, Watch } from "vue-property-decorator"; | 51 | import { TagSearch } from "@/@types/tag"; |
52 | import { Dictionary, Route } from "vue-router/types/router"; | ||
53 | import Navigation from "@/services/navigation"; | 52 | import Navigation from "@/services/navigation"; |
54 | import IndexFactory from "@/services/indexfactory"; | 53 | import { Component, Vue, Watch } from "vue-property-decorator"; |
54 | import { Dictionary, Route } from "vue-router/types/router"; | ||
55 | 55 | ||
56 | @Component | 56 | @Component |
57 | export default class PanelLeft extends Vue { | 57 | export default class PanelLeft extends Vue { |
58 | searchFilters: Tag.Search[] = []; | 58 | searchFilters: TagSearch[] = []; |
59 | infoOpen: boolean = true; | 59 | infoOpen: boolean = true; |
60 | 60 | ||
61 | mounted() { | 61 | mounted() { |