Skip to content

Commit c598121

Browse files
committed
fix: use antigravity (gemini 3.1) to fix subject id overflow
1 parent 879da83 commit c598121

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

apps/web/src/routes/_app/datahub/index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,13 @@ const MasterDataTable: React.FC<{
308308
columns={[
309309
{
310310
accessorFn: (subject) => removeSubjectIdScope(subject.id).slice(0, subjectIdDisplaySetting ?? 9),
311+
cell: (ctx) => (
312+
<div className="grid">
313+
<div className="min-w-0 overflow-x-auto whitespace-nowrap" title={ctx.getValue() as string}>
314+
{ctx.getValue() as string}
315+
</div>
316+
</div>
317+
),
311318
header: t('datahub.index.table.subject'),
312319
id: 'subjectId'
313320
},

0 commit comments

Comments
 (0)