diff --git a/hwe/ts/components/GeneralList.vue b/hwe/ts/components/GeneralList.vue index 36fa65f2..1c0902fb 100644 --- a/hwe/ts/components/GeneralList.vue +++ b/hwe/ts/components/GeneralList.vue @@ -578,6 +578,9 @@ const columnRawDefs = ref sortable: true, comparator: (a, b, c, d) => c.data.officerLevel - d.data.officerLevel, cellRenderer: ({ data }: GenValueParams) => { + if(data.officerLevel >= 5){ + return `${data.officerLevelText}`; + } if (data.st2 && 2 <= data.officerLevel && data.officerLevel <= 4) { const cityName = gameConstStore.value.cityConst[data.officer_city].name; return `${cityName}
${data.officerLevelText}`;