We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c598121 commit 4a2fd4fCopy full SHA for 4a2fd4f
1 file changed
apps/web/src/routes/_app/datahub/index.tsx
@@ -307,11 +307,11 @@ const MasterDataTable: React.FC<{
307
<DataTable
308
columns={[
309
{
310
- accessorFn: (subject) => removeSubjectIdScope(subject.id).slice(0, subjectIdDisplaySetting ?? 9),
+ accessorFn: (subject) => removeSubjectIdScope(subject.id),
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}
+ {(ctx.getValue() as string).slice(0, subjectIdDisplaySetting ?? 9)}
315
</div>
316
317
),
0 commit comments