mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-18 06:13:45 +02:00
Get dashboard converted
This commit is contained in:
@@ -32,12 +32,11 @@ export default Vue.component('navigation', {
|
||||
},
|
||||
|
||||
methods: {
|
||||
search: debounce(function (): void {
|
||||
// @todo why is this not liked?
|
||||
// if (this.searchTerm.length >= 3) {
|
||||
// this.loadingResults = true;
|
||||
// this.gatherSearchResults();
|
||||
// }
|
||||
search: debounce(function (this: any): void {
|
||||
if (this.searchTerm.length >= 3) {
|
||||
this.loadingResults = true;
|
||||
this.gatherSearchResults();
|
||||
}
|
||||
}, 500),
|
||||
|
||||
gatherSearchResults: function (): void {
|
||||
|
||||
Reference in New Issue
Block a user