mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-01 22:48:32 +00:00
Fix inconsistency of input field placeholder text capitalization
The board search input field of the "Select Other Board and Port" dialog uses placeholder text to explain the usage of the field to the user. All other placeholder text in the IDE's UI uses sentence case. This specific placeholder was the exception, using unpleasant caps lock instead. The inconsistency is resolved by changing the placeholder text to the standard sentence case.
This commit is contained in:
@@ -308,7 +308,7 @@ export class BoardsConfig extends React.Component<
|
||||
className="theia-input"
|
||||
placeholder={nls.localize(
|
||||
'arduino/board/searchBoard',
|
||||
'SEARCH BOARD'
|
||||
'Search board'
|
||||
)}
|
||||
onChange={this.updateBoards}
|
||||
ref={this.focusNodeSet}
|
||||
|
||||
Reference in New Issue
Block a user