js lint
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Jan Bader 2022-08-21 20:00:13 +00:00
parent 2f636b5f9c
commit 0c2438373d
2 changed files with 4 additions and 4 deletions

View File

@ -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 || "");

View File

@ -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()