NoActive to -
This commit is contained in:
parent
9fb2260d08
commit
7632c23743
1 changed files with 2 additions and 2 deletions
|
|
@ -83,7 +83,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" : "-";
|
||||
},
|
||||
},
|
||||
]);
|
||||
|
|
@ -144,7 +144,7 @@ const columnsHistory = 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