Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m48s

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-01-30 18:08:18 +07:00
commit 72f3cdcdc0
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",