Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions tensorboard/webapp/widgets/dropdown/dropdown_component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,9 @@ mat-select:focus {
max-width: 70vw;
}

.tb-mat-option {
// Overrides Angular Material's fixed height.
// This selector needs relatively more specificity than Angular Material's
// to override the fixed height.
::ng-deep mat-option.mat-option {
height: auto;
}

Expand Down
1 change: 0 additions & 1 deletion tensorboard/webapp/widgets/dropdown/dropdown_component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export interface DropdownOption {
>
<mat-option
*ngFor="let option of options"
class="tb-mat-option"
[value]="option.value"
[disabled]="option.disabled"
>
Expand Down