Skip to content

Commit

Permalink
fix search by enter
Browse files Browse the repository at this point in the history
  • Loading branch information
Der-Alex-K committed Jan 16, 2024
1 parent 727c3c7 commit 68a0a69
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,10 @@ export default class App extends Vue {
this.selectedSuggestion.type === this.suggestionTypeZaehlung
) {
this.showZaehlung(this.selectedSuggestion);
} else if (
this.selectedSuggestion.type === this.suggestionTypeMessstelle
) {
this.showMessstelle(this.selectedSuggestion);
} else {
this.search();
}
Expand Down

0 comments on commit 68a0a69

Please sign in to comment.