Skip to content

Commit

Permalink
(dataset): removed unsued import
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksii Aleksandrov committed Aug 30, 2023
1 parent 0576a39 commit e088bcf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,13 @@ <h2 class="box-title align-items-center py-3 m-0">Result:</h2>
<div class="query-limit mb-4 mt-4 d-flex align-items-center">
<p class="mb-0 mr-2">Query Limit: </p>
<mat-button-toggle-group
*ngFor="let limit of queryLimits;"
name="query-limits"
aria-label="Font Style"
class="mr-4"
>
<mat-button-toggle (change)="changeLimit(limit)" [checked]="limit === defaultLimit">{{ limit }}</mat-button-toggle>
<ng-container *ngFor="let limit of queryLimits;">
<mat-button-toggle (change)="changeLimit(limit)" [checked]="limit === defaultLimit">{{ limit }}</mat-button-toggle>
</ng-container>
</mat-button-toggle-group>
</div>

Expand All @@ -166,11 +168,13 @@ <h2 class="box-title align-items-center py-3 m-0">Result:</h2>
<div class="query-limit mb-4 mt-4 d-flex align-items-center">
<p class="mb-0 mr-2">Query Limit: </p>
<mat-button-toggle-group
*ngFor="let limit of queryLimits;"
name="query-limits"
aria-label="Font Style"
class="mr-4"
>
<mat-button-toggle (change)="changeLimit(limit)" [checked]="limit === defaultLimit">{{ limit }}</mat-button-toggle>
<ng-container *ngFor="let limit of queryLimits;">
<mat-button-toggle (change)="changeLimit(limit)" [checked]="limit === defaultLimit">{{ limit }}</mat-button-toggle>
</ng-container>
</mat-button-toggle-group>
</div>
</ng-container>
Expand Down
1 change: 0 additions & 1 deletion src/app/dataset-view/dataset.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { NavigationService } from "../services/navigation.service";
import { DatasetViewTypeEnum } from "./dataset-view.interface";
import { of } from "rxjs";
import { routerMock, routerMockEventSubject } from "../common/base-test.helpers.spec";
import AppValues from "../common/app.values";
import { OverviewComponent } from "./additional-components/overview-component/overview-component";
import { DatasetViewMenuComponent } from "./dataset-view-menu/dataset-view-menu-component";
import { MatMenuModule } from "@angular/material/menu";
Expand Down

0 comments on commit e088bcf

Please sign in to comment.