chore(deps) Upgrade eslint (#13341)

Upgrade eslint related packages
Fix new errors
This commit is contained in:
Robert Pintilii
2023-05-12 13:24:50 +03:00
committed by GitHub
parent ae0669fa07
commit 2ba6bcf172
24 changed files with 1074 additions and 633 deletions

View File

@@ -87,14 +87,16 @@ export default class ToolboxItem extends AbstractToolboxItem<IProps> {
const useTooltip = this.tooltip && this.tooltip.length > 0;
if (contextMenu) {
return (<ContextMenuItem
accessibilityLabel = { this.accessibilityLabel }
disabled = { disabled }
icon = { icon }
onClick = { onClick }
onKeyDown = { onKeyDown }
onKeyPress = { this._onKeyPress }
text = { this.label } />);
return (
<ContextMenuItem
accessibilityLabel = { this.accessibilityLabel }
disabled = { disabled }
icon = { icon }
onClick = { onClick }
onKeyDown = { onKeyDown }
onKeyPress = { this._onKeyPress }
text = { this.label } />
);
}
let children = (
<Fragment>