Skip to content

Commit 279fb09

Browse files
committed
chore: prettier run across PBT changes
1 parent de8ab9d commit 279fb09

File tree

7 files changed

+193
-110
lines changed

7 files changed

+193
-110
lines changed

pkg/new-ui/v1beta1/frontend/src/app/pages/experiment-details/pbt/pbt-tab-loader.module.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ import { PbtTabComponent } from './pbt-tab.component';
1010

1111
@NgModule({
1212
declarations: [PbtTabComponent],
13-
imports: [CommonModule, FormsModule, MatFormFieldModule, MatSelectModule, MatCheckboxModule],
13+
imports: [
14+
CommonModule,
15+
FormsModule,
16+
MatFormFieldModule,
17+
MatSelectModule,
18+
MatCheckboxModule,
19+
],
1420
exports: [PbtTabComponent],
1521
})
1622
export class PbtTabModule {}
Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
<div class="pbt-wrapper">
2-
32
<div class="pbt-options-wrapper">
43
<mat-form-field appearance="fill" class="pbt-option">
54
<mat-label>Y-Axis</mat-label>
6-
<mat-select [(ngModel)]="selectedName" (ngModelChange)="onDropdownChange()">
5+
<mat-select
6+
[(ngModel)]="selectedName"
7+
(ngModelChange)="onDropdownChange()"
8+
>
79
<mat-option *ngFor="let name of selectableNames" [value]="name">
8-
{{name}}
10+
{{ name }}
911
</mat-option>
1012
</mat-select>
1113
</mat-form-field>
1214

13-
<mat-checkbox [(ngModel)]="displayTrace" (ngModelChange)="onTraceChange()">Display Seed Traces</mat-checkbox>
15+
<mat-checkbox [(ngModel)]="displayTrace" (ngModelChange)="onTraceChange()"
16+
>Display Seed Traces</mat-checkbox
17+
>
1418
</div>
1519

1620
<div #pbtGraph id="pbt-graph" class="d3-tab-graph"></div>
17-
1821
</div>

pkg/new-ui/v1beta1/frontend/src/app/pages/experiment-details/pbt/pbt-tab.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818

1919
.pbt-option {
20-
margin: 10px
20+
margin: 10px;
2121
}
2222

2323
.d3-tab-graph {

0 commit comments

Comments
 (0)