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 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
(limited to 'viewer/src/components/LdCommandSearch.vue')
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;
}
}
--
cgit v1.2.3