Fix input on mobile #44

Merged
jacob1123 merged 3 commits from mobile-input into master 2022-03-15 22:12:31 +01:00
Showing only changes of commit f0084b683e - Show all commits

View File

@ -16,10 +16,10 @@ defineProps<{
accountid: string accountid: string
}>() }>()
const modalInputRow = ref<TransactionInputRow>(null); const modalInputRow = ref<typeof TransactionInputRow | null>(null);
function submitModal() { function submitModal() {
modalInputRow.value.Save(); modalInputRow.value!.Save();
} }
const accounts = useAccountStore(); const accounts = useAccountStore();