fix: refs #6900 improve logic
gitea/salix-front/pipeline/pr-test This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-08-14 14:52:47 +02:00
parent 65d893e128
commit 3bba5db1b5
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ const cols = computed(() => [
},
]);
const daysAgo = ref(0);
const daysAgo = ref();
onBeforeMount(async () => {
const tableParam = useRoute().query.table;
@ -51,7 +51,7 @@ onBeforeMount(async () => {
</template>
</RightMenu>
<VnTable
v-if="daysAgo"
v-if="!isNaN(daysAgo)"
data-key="InvoiceInSerial"
url="InvoiceIns/getSerial"
:columns="cols"