MM-51846 : Upgrade Esint from 7 to 8+ (#22753)

Этот коммит содержится в:
M-ZubairAhmed
2023-04-07 03:50:01 +05:30
коммит произвёл GitHub
родитель 84b0e3dff1
Коммит 9bffaeae42
362 изменённых файлов: 3756 добавлений и 3990 удалений

Просмотреть файл

@@ -100,15 +100,15 @@ export default class EditCommand extends React.PureComponent<Props, State> {
} else {
await this.submitCommand();
}
}
};
public handleConfirmModal = (): void => {
this.setState({showConfirmModal: true});
}
};
public confirmModalDismissed = (): void => {
this.setState({showConfirmModal: false});
}
};
public submitCommand = async (): Promise<void> => {
this.setState({serverError: ''});
@@ -125,7 +125,7 @@ export default class EditCommand extends React.PureComponent<Props, State> {
if (error) {
this.setState({serverError: error.message});
}
}
};
public renderExtra = (): JSX.Element => {
const confirmButton = (
@@ -159,7 +159,7 @@ export default class EditCommand extends React.PureComponent<Props, State> {
onCancel={this.confirmModalDismissed}
/>
);
}
};
public render(): JSX.Element {
if (!this.state.originalCommand) {