mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
fix: journal double api fetching
This commit is contained in:
@@ -188,14 +188,14 @@ export default defineComponent({
|
|||||||
if (!value || value == '') return;
|
if (!value || value == '') return;
|
||||||
if (value.length < 3) return;
|
if (value.length < 3) return;
|
||||||
|
|
||||||
this.startSearchTimeout('driver', value);
|
if (this.showOptions) this.startSearchTimeout('driver', value);
|
||||||
},
|
},
|
||||||
|
|
||||||
async 'searchersValues.search-dispatcher'(value: string | undefined) {
|
async 'searchersValues.search-dispatcher'(value: string | undefined) {
|
||||||
if (!value || value == '') return;
|
if (!value || value == '') return;
|
||||||
if (value.length < 3) return;
|
if (value.length < 3) return;
|
||||||
|
|
||||||
this.startSearchTimeout('dispatcher', value);
|
if (this.showOptions) this.startSearchTimeout('dispatcher', value);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -283,7 +283,6 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
searchConfirm() {
|
searchConfirm() {
|
||||||
this.$emit('onSearchConfirm');
|
|
||||||
this.handleRouteParams();
|
this.handleRouteParams();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -272,7 +272,7 @@ export default defineComponent({
|
|||||||
this.scrollDataLoaded = true;
|
this.scrollDataLoaded = true;
|
||||||
},
|
},
|
||||||
|
|
||||||
async fetchHistoryData() {
|
async fetchHistoryData() {
|
||||||
const queryParams: DispatchersQueryParams = {};
|
const queryParams: DispatchersQueryParams = {};
|
||||||
|
|
||||||
const dispatcherName = this.searchersValues['search-dispatcher'].trim() || undefined;
|
const dispatcherName = this.searchersValues['search-dispatcher'].trim() || undefined;
|
||||||
|
|||||||
Reference in New Issue
Block a user