From 7f0b8367a2092c5ffd69e9e46d055cbd605c0e3a Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 28 Feb 2020 18:50:12 +0100 Subject: viewer: more minor architectural and performance improvement --- viewer/src/components/LdCommandSearch.vue | 6 +----- viewer/src/components/LdGallery.vue | 8 +++----- 2 files changed, 4 insertions(+), 10 deletions(-) (limited to 'viewer/src/components') diff --git a/viewer/src/components/LdCommandSearch.vue b/viewer/src/components/LdCommandSearch.vue index bd18060..3d95eb0 100644 --- a/viewer/src/components/LdCommandSearch.vue +++ b/viewer/src/components/LdCommandSearch.vue @@ -23,7 +23,7 @@ {{$t('command.search.clear')}} - + {{$t('command.search.search')}} @@ -35,8 +35,6 @@ import { Component, Vue, Emit } from "vue-property-decorator"; @Component export default class LdCommandSearch extends Vue { - loading: boolean = false; - @Emit() clear(e: HTMLButtonElement) { return e; @@ -44,8 +42,6 @@ export default class LdCommandSearch extends Vue { @Emit() search(e: HTMLButtonElement) { - this.loading = true; - this.$nextTick(() => (this.loading = false)); return e; } } diff --git a/viewer/src/components/LdGallery.vue b/viewer/src/components/LdGallery.vue index 16e9f7c..cd4bc28 100644 --- a/viewer/src/components/LdGallery.vue +++ b/viewer/src/components/LdGallery.vue @@ -19,11 +19,9 @@ -- cgit v1.2.3