File tree 2 files changed +2
-2
lines changed
arduino-ide-extension/src/browser
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ export class BoardsDropDown extends React.Component<BoardsDropDown.Props> {
138
138
{ boardLabel }
139
139
</ div >
140
140
< div className = "arduino-boards-dropdown-item--port-label noWrapInfo noselect" >
141
- { port . address }
141
+ { port . addressLabel }
142
142
</ div >
143
143
</ div >
144
144
{ selected ? < div className = "fa fa-check" /> : '' }
Original file line number Diff line number Diff line change @@ -288,7 +288,7 @@ PID: ${PID}`;
288
288
for ( let i = 0 ; i < sortedIDs . length ; i ++ ) {
289
289
const portID = sortedIDs [ i ] ;
290
290
const [ port , boards ] = ports [ portID ] ;
291
- let label = `${ port . address } ` ;
291
+ let label = `${ port . addressLabel } ` ;
292
292
if ( boards . length ) {
293
293
const boardsList = boards . map ( ( board ) => board . name ) . join ( ', ' ) ;
294
294
label = `${ label } (${ boardsList } )` ;
You can’t perform that action at this time.
0 commit comments