Merge pull request #11591 from mhaley37/allow-table-options-on-entity-tables

Change Table component to disable draggable columns by default
This commit is contained in:
Patrik Oldsberg
2022-06-13 12:42:27 +02:00
committed by GitHub
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-react': patch
---
Table component no longer has drag and drop columns by default
@@ -85,6 +85,7 @@ export const EntityTable = <T extends Entity>(props: EntityTableProps<T>) => {
paging: false,
actionsColumnIndex: -1,
padding: 'dense',
draggable: false,
}}
data={entities}
/>