We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c212c38 commit a4285f8Copy full SHA for a4285f8
ui/arduino/views/components/toolbar.js
@@ -71,15 +71,15 @@ function Toolbar(state, emit) {
71
onClick: () => emit('change-view', 'file-manager')
72
})}
73
74
- ${Button({
+ ${!window.BridgeWindow.isLinux() ? Button({
75
icon: 'install-package.svg',
76
tooltip: `Install Package`,
77
active: true,
78
onClick: () => {
79
if(state.isConnected) emit('disconnect') // Package installer requires exclusive access to the serial port
80
emit('launch-app', 'micropython-package-installer://', 'https://github.com/arduino/lab-micropython-package-installer/releases/latest')
81
}
82
- })}
+ }) : '' }
83
</div>
84
`
85
0 commit comments