Skip to content

Commit

Permalink
Remove comments, restore a missing var
Browse files Browse the repository at this point in the history
  • Loading branch information
dkmullen committed May 30, 2018
1 parent 8ad2dcb commit 141bc13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Expand Up @@ -49,7 +49,6 @@ <h4>{{"Available Disks" | translate }}</h4>
<ng-template ngx-datatable-header-template let-value="value" let-allRowsSelected="allRowsSelected" let-selectFn="selectFn">
<div class="headerCheckboxCellManager">
<mat-checkbox [checked]="allRowsSelected" (change)="selectFn(!allRowsSelected)"></mat-checkbox>
<!-- &nbsp character needed to fix checkbox alignment on mozila-->
</div>
</ng-template>

Expand Down
Expand Up @@ -17,9 +17,8 @@
(select)='onSelect($event)'>
<ngx-datatable-column [width]="80" [sortable]="false" [canAutoResize]="false" [draggable]="false" [resizeable]="false">
<ng-template ngx-datatable-header-template let-value="value" let-allRowsSelected="allRowsSelected" let-selectFn="selectFn">
<div>
<mat-checkbox [checked]="allRowsSelected" (change)="selectFn(!allRowsSelected)">&nbsp;</mat-checkbox>
<!-- &nbsp character needed to fix checkbox alignment on mozila-->
<div class="headerCheckboxCellVDev">
<mat-checkbox [checked]="allRowsSelected" (change)="selectFn(!allRowsSelected)"></mat-checkbox>
</div>
</ng-template>

Expand Down

1 comment on commit 141bc13

@dkmullen
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems to have been reverted to an earlier version of these files. Probably my mistake somewhere.

Please sign in to comment.