Skip to content

Commit

Permalink
fix(filter): fix typage
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbeau committed Apr 12, 2018
1 parent aeaeab8 commit b2ea1ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
<div class="igo-layer-button-group">
<mat-slide-toggle class="example-margin" (change)="toggleFilterState($event,currentFilter,'active')" tooltip-position="below"
matTooltipShowDelay="500" [matTooltip]="'igo.filter.toggleFilterState' | translate" [color]="color" [checked]="currentFilter.active"
[disabled]="!currentFilter.active">
[disabled]="disabled">
</mat-slide-toggle>
<button mat-icon-button tooltip-position="below" matTooltipShowDelay="500" [matTooltip]="'igo.filter.removeFilter' | translate"
color="warn" (click)="deleteFilter(currentFilter)">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export class OgcFilterFormComponent {
public values: Observable<any>;
public color = 'primary';
public snrc = '';
public disabled;

@Input()
get datasource(): OgcFilterableDataSource { return this._dataSource; }
Expand Down

0 comments on commit b2ea1ad

Please sign in to comment.