Skip to content

Commit c5154fc

Browse files
committed
FE: Fix lint
1 parent ff8d6e7 commit c5154fc

File tree

1 file changed

+18
-3
lines changed
  • frontend/src/components/Schemas/List

1 file changed

+18
-3
lines changed

frontend/src/components/Schemas/List/List.tsx

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,24 @@ const List: React.FC = () => {
6262
/>
6363
),
6464
},
65-
{ id: SchemaColumnsToSort.ID, header: 'Id', accessorKey: 'id', size: 120 },
66-
{ id: SchemaColumnsToSort.TYPE, header: 'Type', accessorKey: 'schemaType', size: 120 },
67-
{ id: SchemaColumnsToSort.VERSION, header: 'Version', accessorKey: 'version', size: 120 },
65+
{
66+
id: SchemaColumnsToSort.ID,
67+
header: 'Id',
68+
accessorKey: 'id',
69+
size: 120,
70+
},
71+
{
72+
id: SchemaColumnsToSort.TYPE,
73+
header: 'Type',
74+
accessorKey: 'schemaType',
75+
size: 120,
76+
},
77+
{
78+
id: SchemaColumnsToSort.VERSION,
79+
header: 'Version',
80+
accessorKey: 'version',
81+
size: 120,
82+
},
6883
{
6984
id: SchemaColumnsToSort.COMPATIBILITY,
7085
header: 'Compatibility',

0 commit comments

Comments
 (0)