mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Changing to pass a new Set to setState to fix potential no-op (#134936)
This commit is contained in:
parent
60e7f1dcd1
commit
16c2c717f1
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ export class FeatureTable extends Component<Props, State> {
|
|||
}
|
||||
|
||||
this.setState({
|
||||
expandedPrivilegeControls: this.state.expandedPrivilegeControls,
|
||||
expandedPrivilegeControls: new Set([...this.state.expandedPrivilegeControls]),
|
||||
});
|
||||
}}
|
||||
>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue