aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Strohm <strohm@data-quest.de>2024-05-27 15:43:58 +0000
committerMoritz Strohm <strohm@data-quest.de>2024-05-27 15:43:58 +0000
commit203eb5a996d40d7acd17db5e9c342059eabde749 (patch)
tree627da9e5afdb86fa9b5d975fbd07cc1cd05c5cea
parenta0dd66e71949fc78f6ea9d88a0d4cd241185f373 (diff)
QuickSearch.vue: reset input after selection, fixes #3963
Closes #3963 Merge request studip/studip!2876
-rw-r--r--resources/vue/components/Quicksearch.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/resources/vue/components/Quicksearch.vue b/resources/vue/components/Quicksearch.vue
index 94b0a3a..0f37ae0 100644
--- a/resources/vue/components/Quicksearch.vue
+++ b/resources/vue/components/Quicksearch.vue
@@ -119,6 +119,7 @@ export default {
this.results = [];
this.$emit('input', this.returnValue, this.inputValue);
+ this.inputValue = '';
},
selectUp () {
if (this.selected > 0) {