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