diff options
author | Zero~Informatique | 2020-01-10 22:03:30 +0100 |
---|---|---|
committer | Zero~Informatique | 2020-01-10 22:03:30 +0100 |
commit | d25b5a87668bba43e81342f7385a1097653c5311 (patch) | |
tree | 074e0b3c84728c09821329a24fc5eb2f575e2145 /viewer/src/components | |
parent | 89bcb2dbe5b5e6eb8e8ba13ceecee2770dfe4cd4 (diff) | |
download | ldgallery-d25b5a87668bba43e81342f7385a1097653c5311.tar.gz |
Code review code improvements
Diffstat (limited to 'viewer/src/components')
-rw-r--r-- | viewer/src/components/LdTagInput.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/viewer/src/components/LdTagInput.vue b/viewer/src/components/LdTagInput.vue index daca62d..242ebdb 100644 --- a/viewer/src/components/LdTagInput.vue +++ b/viewer/src/components/LdTagInput.vue | |||
@@ -40,7 +40,7 @@ export default class LdTagInput extends Vue { | |||
40 | return `${option.display} (${option.items.length})`; | 40 | return `${option.display} (${option.items.length})`; |
41 | } | 41 | } |
42 | 42 | ||
43 | extractOperation(filter: string) { | 43 | extractOperation(filter: string): Operation { |
44 | const first = filter.slice(0, 1); | 44 | const first = filter.slice(0, 1); |
45 | switch (first) { | 45 | switch (first) { |
46 | case Operation.ADDITION: | 46 | case Operation.ADDITION: |