NoActive to -

This commit is contained in:
setthawutttty 2025-02-05 14:51:03 +07:00
parent 9fb2260d08
commit 7632c23743

View file

@ -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",