Skip to content

Commit

Permalink
fix merge from master
Browse files Browse the repository at this point in the history
  • Loading branch information
legrego committed Dec 19, 2019
1 parent 9bcc1d6 commit 3b88e1a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class RoleMappingsGridPage extends Component<Props, State> {
const sorting = {
sort: {
field: 'name',
direction: 'asc',
direction: 'asc' as any,
},
};

Expand Down Expand Up @@ -247,7 +247,7 @@ export class RoleMappingsGridPage extends Component<Props, State> {

return (
<EuiInMemoryTable
items={roleMappings}
items={roleMappings!}
itemId="name"
columns={this.getColumnConfig()}
search={search}
Expand Down

0 comments on commit 3b88e1a

Please sign in to comment.