js lint
This commit is contained in:
parent
2f636b5f9c
commit
0c2438373d
@ -11,10 +11,10 @@ export interface Suggestion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
text: string,
|
text: string | null,
|
||||||
id: string | undefined,
|
id: string | null,
|
||||||
model: string,
|
model: string,
|
||||||
type?: string | undefined,
|
type?: string | null,
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const SearchQuery = ref(props.text || "");
|
const SearchQuery = ref(props.text || "");
|
||||||
|
@ -42,7 +42,7 @@ const filters = ref({
|
|||||||
ToDate: new Date(2999,11,32),
|
ToDate: new Date(2999,11,32),
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(() => filters.value.AccountID
|
watch(() => (filters.value.AccountID ?? "")
|
||||||
+ filters.value.PayeeID
|
+ filters.value.PayeeID
|
||||||
+ filters.value.CategoryID
|
+ filters.value.CategoryID
|
||||||
+ filters.value.FromDate?.toISOString()
|
+ filters.value.FromDate?.toISOString()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user