Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit 1e4bef7

Browse files
authored
Merge branch 'dev' into stlinkv3
2 parents 9737403 + dad8b4b commit 1e4bef7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: preinstall
4747
run: |
4848
npm install -g node-gyp
49-
npm install -g vsce
49+
npm install -g vsce@"^1.0.0"
5050
npm install -g gulp
5151
- name: install
5252
run: npm install
@@ -85,7 +85,7 @@ jobs:
8585
- name: preinstall
8686
run: |
8787
npm install -g node-gyp
88-
npm install -g vsce
88+
npm install -g vsce@"^1.0.0"
8989
npm install -g gulp
9090
- name: install
9191
run: npm install

src/views/app/components/BoardConfig.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class BoardConfig extends React.Component<IBoardConfigProps, React.Props<any>> {
3535
this.state = {};
3636
}
3737

38-
public UNSAFE_componentWillMount() {
38+
public componentWillMount() {
3939
this.props.loadInstalledBoards();
4040
this.props.loadConfigItems();
4141
}

src/views/app/components/BoardManager.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class BoardManager extends React.Component<IBoardManagerProps, IBoardManagerStat
6666
this.typeUpdate = this.typeUpdate.bind(this);
6767
}
6868

69-
public UNSAFE_componentWillMount() {
69+
public componentWillMount() {
7070
this.props.loadBoardPackages(false);
7171
}
7272

src/views/app/components/ExampleTreeView.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ExampleTreeView extends React.Component<IExampleViewProps, IExampleViewSta
3939
this.onExpand = this.onExpand.bind(this);
4040
}
4141

42-
public UNSAFE_componentWillMount() {
42+
public componentWillMount() {
4343
this.props.loadExamples();
4444
}
4545

src/views/app/components/LibraryManager.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class LibraryManager extends React.Component<ILibraryManagerProps, ILibraryManag
8080
this.handleCheck = this.handleCheck.bind(this);
8181
}
8282

83-
public UNSAFE_componentWillMount() {
83+
public componentWillMount() {
8484
this.props.loadLibraries(false);
8585
}
8686

0 commit comments

Comments
 (0)