Skip to content

Commit 1d87f82

Browse files
authoredMay 17, 2023
Merge pull request #43 from arduino/bugfix/save-button
Fix variable name
2 parents d0236cb + 9f2c19f commit 1d87f82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ui/arduino/components/toolbar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function Toolbar(state, emit) {
5959
save = Button({
6060
icon: 'icons/Save.svg',
6161
label: 'Save',
62-
disabled: !canSaveDisk,
62+
disabled: !canSaveBoard,
6363
onclick: () => emit('save')
6464
})
6565
} else if (state.selectedDevice === 'disk') {

0 commit comments

Comments
 (0)
Please sign in to comment.