Skip to content

Commit

Permalink
fix(orb-ui): On active datasets table, add resizeable columns (#2513)
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-mendonca-encora authored Jul 20, 2023
1 parent 4a10f7a commit 15b287e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div #tableWrapper class="tableWrapper">
<ngx-datatable
#table
[columnMode]="columnMode.flex"
[columnMode]="columnMode.force"
[columns]="columns"
[footerHeight]="0"
[headerHeight]="50"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export class PolicyDatasetsComponent
name: 'Agent Group',
resizeable: true,
canAutoResize: true,
flexGrow: 1.2,
width: 250,
cellTemplate: this.groupTemplateCell,
},
{
Expand All @@ -112,23 +112,23 @@ export class PolicyDatasetsComponent
resizeable: true,
canAutoResize: true,
minWidth: 80,
flexGrow: 0,
width: 80,
cellTemplate: this.validTemplateCell,
},
{
prop: 'sinks',
name: 'Sinks',
resizeable: true,
canAutoResize: true,
flexGrow: 2,
width: 450,
cellTemplate: this.sinksTemplateCell,
},
{
name: '',
prop: 'actions',
resizeable: true,
sortable: false,
flexGrow: 1,
width: 200,
cellTemplate: this.actionsTemplateCell,
},
];
Expand Down

0 comments on commit 15b287e

Please sign in to comment.