Skip to content

Commit

Permalink
reverts a change
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneBenHMCTS committed Jan 10, 2025
1 parent 0fa0583 commit 1495a88
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ <h2 class="heading-h2" id="search-result-heading__text" tabindex="-1">{{ (caseSt
</caption>
<thead>
<tr scope="row">
<th *ngIf="selectionEnabled" class="govuk-table__checkbox">
<th *ngIf="selectionEnabled" class="govuk-table__checkbox" scope="col">
<div class="govuk-checkboxes__item">
<input class="govuk-checkboxes__input" id="select-all" name="select-all" type="checkbox" (change)="selectAll()" [checked]="allOnPageSelected()" [disabled]="!canAnyBeShared()" />
<label class="govuk-label govuk-checkboxes__label" for="select-all">
</label>
</div>
</th>
<th *ngFor="let col of resultView.columns" class="search-result-column-header"
[attr.aria-sort]="isSortAscending(col) === null ? null : (isSortAscending(col) ? 'ascending' : 'descending')" scope="col">
[attr.aria-sort]="isSortAscending(col) === null ? null : (isSortAscending(col) ? 'ascending' : 'descending')">
<div>
<div class="search-result-column-label" (click)="sort(col)" (keyup)="noop()">
{{col.label | rpxTranslate}}
Expand All @@ -44,7 +44,7 @@ <h2 class="heading-h2" id="search-result-heading__text" tabindex="-1">{{ (caseSt
</div>
</div>
</th>
<th *ngIf="activityEnabled()" scope="col" style="width: 110px;">&ZeroWidthSpace;</th>
<th *ngIf="activityEnabled()" style="width: 110px;">&ZeroWidthSpace;</th>
</tr>
</thead>

Expand Down

0 comments on commit 1495a88

Please sign in to comment.