Skip to content

Commit 516c792

Browse files
Akos Kittakittaakos
Akos Kitta
authored andcommitted
GH-430: Fixed 'Close' confirmation is ignored.
Updated to lates Theia: `1.11.0-next.c9db9754`. Signed-off-by: Akos Kitta <[email protected]>
1 parent e639d7d commit 516c792

File tree

2 files changed

+1282
-1273
lines changed

2 files changed

+1282
-1273
lines changed

Diff for: arduino-ide-extension/src/browser/widgets/arduino-select.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import { ThemeConfig } from 'react-select/src/theme';
66

77
export class ArduinoSelect<T> extends Select<T> {
88

9-
constructor(props: Readonly<Props<T>>) {
9+
constructor(props: Readonly<Props<T, false>>) {
1010
super(props);
1111
}
1212

1313
render(): React.ReactNode {
1414
const controlHeight = 27; // from `monitor.css` -> `.serial-monitor-container .head` (`height: 27px;`)
15-
const styles: Styles = {
15+
const styles: Styles<T, false> = {
1616
control: styles => ({
1717
...styles,
1818
minWidth: 120,

0 commit comments

Comments
 (0)