diff --git a/frontend/lib/registry/components/table-list/TableListComponent.tsx b/frontend/lib/registry/components/table-list/TableListComponent.tsx index 365c1bc5..8931b57c 100644 --- a/frontend/lib/registry/components/table-list/TableListComponent.tsx +++ b/frontend/lib/registry/components/table-list/TableListComponent.tsx @@ -675,7 +675,7 @@ export const TableListComponent: React.FC = ({ } const meta = columnMeta[column.columnName]; - if (meta?.webType && meta?.codeCategory) { + if (meta?.webType === "code" && meta?.codeCategory) { const convertedValue = optimizedConvertCode(value, meta.codeCategory); if (convertedValue !== value) return convertedValue; }