-
Notifications
You must be signed in to change notification settings - Fork 448
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: gofmt, black, and prettier run across PBT changes
- Loading branch information
Showing
11 changed files
with
408 additions
and
186 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 8 additions & 5 deletions
13
pkg/new-ui/v1beta1/frontend/src/app/pages/experiment-details/pbt/pbt-tab.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,21 @@ | ||
<div class="pbt-wrapper"> | ||
|
||
<div class="pbt-options-wrapper"> | ||
<mat-form-field appearance="fill" class="pbt-option"> | ||
<mat-label>Y-Axis</mat-label> | ||
<mat-select [(ngModel)]="selectedName" (ngModelChange)="onDropdownChange()"> | ||
<mat-select | ||
[(ngModel)]="selectedName" | ||
(ngModelChange)="onDropdownChange()" | ||
> | ||
<mat-option *ngFor="let name of selectableNames" [value]="name"> | ||
{{name}} | ||
{{ name }} | ||
</mat-option> | ||
</mat-select> | ||
</mat-form-field> | ||
|
||
<mat-checkbox [(ngModel)]="displayTrace" (ngModelChange)="onTraceChange()">Display Seed Traces</mat-checkbox> | ||
<mat-checkbox [(ngModel)]="displayTrace" (ngModelChange)="onTraceChange()" | ||
>Display Seed Traces</mat-checkbox | ||
> | ||
</div> | ||
|
||
<div #pbtGraph id="pbt-graph" class="d3-tab-graph"></div> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
} | ||
|
||
.pbt-option { | ||
margin: 10px | ||
margin: 10px; | ||
} | ||
|
||
.d3-tab-graph { | ||
|
Oops, something went wrong.