NoActive to -
This commit is contained in:
parent
ad6898effc
commit
76eb063bab
2 changed files with 3 additions and 3 deletions
|
|
@ -92,7 +92,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
format(val, row) {
|
||||
return row.status ? "Active" : "NoActive";
|
||||
return row.status ? "Active" : "-";
|
||||
},
|
||||
},
|
||||
]);
|
||||
|
|
@ -395,7 +395,7 @@ onMounted(() => {
|
|||
<div class="row q-pa-sm">
|
||||
<div class="col-3 text-grey-6 text-weight-medium">สถานะ</div>
|
||||
<div class="col-3">
|
||||
{{ props.row.status ? "Active" : "NoActive" }}
|
||||
{{ props.row.status ? "Active" : "-" }}
|
||||
</div>
|
||||
</div>
|
||||
<q-separator />
|
||||
|
|
|
|||
|
|
@ -76,7 +76,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
sortable: true,
|
||||
field: "status",
|
||||
format(val, row) {
|
||||
return row.status ? "Active" : "NoActive";
|
||||
return row.status ? "Active" : "-";
|
||||
},
|
||||
headerStyle: "font-size: 14px",
|
||||
style: "font-size: 14px",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue