File tree 2 files changed +9
-4
lines changed
arduino-ide-extension/src/browser
2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -129,11 +129,14 @@ export class BoardsDropDown extends React.Component<BoardsDropDown.Props> {
129
129
protocolIcon
130
130
) }
131
131
/>
132
- < div className = "arduino-boards-dropdown-item--label" >
133
- < div className = "arduino-boards-dropdown-item--board-label" >
132
+ < div
133
+ className = "arduino-boards-dropdown-item--label"
134
+ title = { `${ boardLabel } \n${ port . address } ` }
135
+ >
136
+ < div className = "arduino-boards-dropdown-item--board-label noWrapInfo noselect" >
134
137
{ boardLabel }
135
138
</ div >
136
- < div className = "arduino-boards-dropdown-item--port-label" >
139
+ < div className = "arduino-boards-dropdown-item--port-label noWrapInfo noselect " >
137
140
{ port . address }
138
141
</ div >
139
142
</ div >
@@ -229,7 +232,8 @@ export class BoardsToolBarItem extends React.Component<
229
232
< div
230
233
className = { classNames (
231
234
'arduino-boards-toolbar-item--label' ,
232
- 'noWrapInfo noselect' ,
235
+ 'noWrapInfo' ,
236
+ 'noselect' ,
233
237
{ 'arduino-boards-toolbar-item--label-connected' : isConnected }
234
238
) }
235
239
>
Original file line number Diff line number Diff line change @@ -226,6 +226,7 @@ div#select-board-dialog .selectBoardContainer .body .list .item.selected i {
226
226
}
227
227
228
228
.arduino-boards-dropdown-item--label {
229
+ overflow : hidden;
229
230
flex : 1 ;
230
231
}
231
232
You can’t perform that action at this time.
0 commit comments