Merge pull request 'fix: taxDue ref lacks null guard before bigint arithmetic (#329)' (#376) from fix/issue-329 into master
This commit is contained in:
commit
80eb5a356f
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ const props = defineProps<{
|
|||
|
||||
const showTaxMenu = ref(false);
|
||||
const newTaxRateIndex = ref<number | null>(null);
|
||||
const taxDue = ref<bigint>();
|
||||
const taxDue = ref<bigint>(0n);
|
||||
const taxPaidGes = ref<number>();
|
||||
const profit = ref<number>();
|
||||
const loading = ref<boolean>(false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue