Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2025-08-14 15:18:47 +07:00
commit 0969c6fffe
2 changed files with 2 additions and 1 deletions

View file

@ -93,6 +93,7 @@ const visibleColumnsResult = ref<String[]>([
"no",
"citizenId",
"name",
"positionName",
"posTypeName",
"posLevelName",
]);

View file

@ -102,7 +102,7 @@ const columns = ref<QTableProps["columns"]>([
headerStyle: "font-size: 14px",
style: "font-size: 14px",
format(val, row) {
return `${row.posTypeShort ? row.posTypeShort : ""}${
return `${row.posTypeShort ? row.posTypeShort : ""} ${
row.posLevel ? row.posLevel : ""
}`;
},