Migrate from gin to echo framework #77

Merged
jacob1123 merged 11 commits from migrate-to-echo into master 2022-08-21 22:04:28 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 0c2438373d - Show all commits

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