Merge branch 'develop' into dev
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m48s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 3m48s
This commit is contained in:
commit
72f3cdcdc0
2 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue