refactor: branch can null
This commit is contained in:
parent
9bf3da6963
commit
2de98fe190
1 changed files with 1 additions and 1 deletions
|
|
@ -306,7 +306,7 @@ watch([inputSearch, currentStatus], async () => {
|
||||||
<q-tr
|
<q-tr
|
||||||
:class="{
|
:class="{
|
||||||
'app-text-muted': props.row.status === 'INACTIVE',
|
'app-text-muted': props.row.status === 'INACTIVE',
|
||||||
'cursor-pointer': props.row._count.branch !== 0,
|
'cursor-pointer': props.row._count?.branch !== 0,
|
||||||
}"
|
}"
|
||||||
:props="props"
|
:props="props"
|
||||||
@click="$emit('viewDetail', props.row, props.rowIndex)"
|
@click="$emit('viewDetail', props.row, props.rowIndex)"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue