fix: convertCommandCodeName columns commandCode

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-01-30 17:55:09 +07:00
parent 444a150fd2
commit 28fa6fbaf7
2 changed files with 2 additions and 2 deletions

View file

@ -210,7 +210,7 @@ const baseColumns = ref<QTableColumn[]>([
sortable: true,
field: "commandCode",
format(val, row) {
return row.commandName;
return store.convertCommandCodeName(row.commandCode);
},
headerStyle: "font-size: 14px",
style: "font-size: 14px",

View file

@ -215,7 +215,7 @@ const baseColumns = ref<QTableColumn[]>([
sortable: true,
field: "commandCode",
format(val, row) {
return row.commandName;
return store.convertCommandCodeName(row.commandCode);
},
headerStyle: "font-size: 14px",
style: "font-size: 14px",