diff options
| author | Moritz Strohm <strohm@data-quest.de> | 2024-05-27 15:43:58 +0000 |
|---|---|---|
| committer | Moritz Strohm <strohm@data-quest.de> | 2024-05-27 15:43:58 +0000 |
| commit | 203eb5a996d40d7acd17db5e9c342059eabde749 (patch) | |
| tree | 627da9e5afdb86fa9b5d975fbd07cc1cd05c5cea | |
| parent | a0dd66e71949fc78f6ea9d88a0d4cd241185f373 (diff) | |
QuickSearch.vue: reset input after selection, fixes #3963
Closes #3963
Merge request studip/studip!2876
| -rw-r--r-- | resources/vue/components/Quicksearch.vue | 1 |
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) { |
