We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent f6efe4e commit 3915443Copy full SHA for 3915443
ui/arduino/store.js
@@ -179,7 +179,7 @@ async function store(state, emitter) {
179
// Connected and ready
180
state.isConnecting = false
181
state.isConnected = true
182
- state.boardNavigationRoot = await getBoardRoot()
+ state.boardNavigationPath = await getBoardNavigationPath()
183
updateMenu()
184
if (state.view === 'editor' && state.panelHeight <= PANEL_CLOSED) {
185
state.panelHeight = state.savedPanelHeight
@@ -1699,7 +1699,7 @@ async function getAvailablePorts() {
1699
return await serialBridge.loadPorts()
1700
}
1701
1702
-async function getBoardRoot() {
+async function getBoardNavigationPath() {
1703
let output = await serialBridge.execFile(await getHelperFullPath())
1704
output = await serialBridge.run(`iget_root()`)
1705
let boardRoot = ''
0 commit comments