Skip to content

Commit

Permalink
fix: board list item actions are aligned to left
Browse files Browse the repository at this point in the history
  • Loading branch information
Akos Kitta committed Jul 26, 2023
1 parent ce83a79 commit 5fd5b0e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,8 @@ export class BoardsServiceProvider
]);
const selectedBoard = this.tryParse(maybeSelectedBoard, isBoardIdentifier);
const selectedPort = this.tryParse(maybeSelectedPort, isPortIdentifier);
let boardListHistory =
const boardListHistory =
this.tryParse(maybeBoardHistory, isBoardListHistory) ?? {};
if ('hack'.length) {
boardListHistory = {}; // TODO remove this
}
return { selectedBoard, selectedPort, boardListHistory };
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ div#select-board-dialog .selectBoardContainer .list .item.selected i {
.arduino-boards-dropdown-item--board-label {
font-size: 14px;
align-self: center;
flex-grow: 1; /* pushes the toolbar to the right */
}

.arduino-boards-dropdown-item .arduino-boards-dropdown-item--label .arduino-boards-dropdown-item--board-name .p-TabBar-toolbar > div {
Expand Down

0 comments on commit 5fd5b0e

Please sign in to comment.