Compare commits

..

No commits in common. "72f3cdcdc022fc71f39736f7a4b5d0c685e595e5" and "6676113c2c1faa78e422ef2d0826639441372ef7" have entirely different histories.

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 store.convertCommandCodeName(row.commandCode);
return row.commandName;
},
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 store.convertCommandCodeName(row.commandCode);
return row.commandName;
},
headerStyle: "font-size: 14px",
style: "font-size: 14px",