Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions frontend/src/components/Schemas/List/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
const columns = React.useMemo<ColumnDef<SchemaSubject>[]>(
() => [
{
id: SchemaColumnsToSort.SUBJECT,
header: 'Subject',
accessorKey: 'subject',
// eslint-disable-next-line react/no-unstable-nested-components
Expand All @@ -61,10 +62,11 @@
/>
),
},
{ header: 'Id', accessorKey: 'id', size: 120 },
{ header: 'Type', accessorKey: 'schemaType', size: 120 },
{ header: 'Version', accessorKey: 'version', size: 120 },
{ id: SchemaColumnsToSort.ID, header: 'Id', accessorKey: 'id', size: 120 },

Check warning on line 65 in frontend/src/components/Schemas/List/List.tsx

View workflow job for this annotation

GitHub Actions / build-and-test / tests

Replace `·id:·SchemaColumnsToSort.ID,·header:·'Id',·accessorKey:·'id',·size:·120` with `⏎········id:·SchemaColumnsToSort.ID,⏎········header:·'Id',⏎········accessorKey:·'id',⏎········size:·120,⏎·····`
{ id: SchemaColumnsToSort.TYPE, header: 'Type', accessorKey: 'schemaType', size: 120 },

Check warning on line 66 in frontend/src/components/Schemas/List/List.tsx

View workflow job for this annotation

GitHub Actions / build-and-test / tests

Replace `·id:·SchemaColumnsToSort.TYPE,·header:·'Type',·accessorKey:·'schemaType',·size:·120` with `⏎········id:·SchemaColumnsToSort.TYPE,⏎········header:·'Type',⏎········accessorKey:·'schemaType',⏎········size:·120,⏎·····`
{ id: SchemaColumnsToSort.VERSION, header: 'Version', accessorKey: 'version', size: 120 },

Check warning on line 67 in frontend/src/components/Schemas/List/List.tsx

View workflow job for this annotation

GitHub Actions / build-and-test / tests

Replace `·id:·SchemaColumnsToSort.VERSION,·header:·'Version',·accessorKey:·'version',·size:·120` with `⏎········id:·SchemaColumnsToSort.VERSION,⏎········header:·'Version',⏎········accessorKey:·'version',⏎········size:·120,⏎·····`
{
id: SchemaColumnsToSort.COMPATIBILITY,
header: 'Compatibility',
accessorKey: 'compatibilityLevel',
size: 160,
Expand Down
Loading