fix recurring invoice view page table

This commit is contained in:
yogesh_gohil
2021-12-06 16:11:24 +05:30
parent ed6268aa7b
commit 2b0477d576
5 changed files with 14 additions and 7 deletions

View File

@ -81,7 +81,7 @@ let isLoading = computed(() => {
watch(
route,
() => {
if (route.params.id) {
if (route.params.id && route.name === 'recurring-invoices.view') {
loadRecurringInvoice()
}
},