We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 879da83 commit c598121Copy full SHA for c598121
1 file changed
apps/web/src/routes/_app/datahub/index.tsx
@@ -308,6 +308,13 @@ const MasterDataTable: React.FC<{
308
columns={[
309
{
310
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
317
+ ),
318
header: t('datahub.index.table.subject'),
319
id: 'subjectId'
320
},
0 commit comments