Fixed more linting errors (#9452)
* Fixed more linting errors * Update the selector of the focus directive to opFocus * Update the selector and BEM class of the focus-within directive * More linting fixes * Remove unused directives, merge focus and autofocus directive, remove now empty a11y module * Some small fixes * Fix ReorderDeltaBuilder * Fix failing specs, linting * Fix a couple of linting errors * Reenable linting rules for unsafe any * Reset broken code, update some html coding stylepull/9485/head
parent
76a6cf3208
commit
87cd178270
@ -1,17 +1,26 @@ |
||||
<button class="button -small advanced-filters--toggle" |
||||
(click)="wpFiltersService.toggleVisibility()" |
||||
[class.-active]="visible$ | async" |
||||
*ngIf="showFilterButton"> |
||||
<button |
||||
class="button -small advanced-filters--toggle" |
||||
(click)="wpFiltersService.toggleVisibility()" |
||||
[class.-active]="visible$ | async" |
||||
*ngIf="showFilterButton" |
||||
> |
||||
<i class="button--icon icon-filter"></i> |
||||
<span class="button--text" [textContent]="filterButtonText"></span> |
||||
</button> |
||||
|
||||
<div class="work-packages--filters-optional-container" |
||||
[ngClass]="{ '-loaded': loaded }"> |
||||
<div id="query_form_content" class="hide-when-print" *ngIf="visible$ | async"> |
||||
<query-filters *ngIf="!!filters" |
||||
[filters]="filters" |
||||
[showCloseFilter]="true" |
||||
(filtersChanged)="replaceIfComplete($event)"></query-filters> |
||||
<div |
||||
class="work-packages--filters-optional-container" |
||||
[ngClass]="{ '-loaded': loaded }" |
||||
> |
||||
<div |
||||
id="query_form_content" |
||||
class="hide-when-print" *ngIf="visible$ | async" |
||||
> |
||||
<query-filters |
||||
*ngIf="!!filters" |
||||
[filters]="filters" |
||||
[showCloseFilter]="true" |
||||
(filtersChanged)="replaceIfComplete($event)" |
||||
></query-filters> |
||||
</div> |
||||
</div> |
||||
|
@ -1,3 +1,3 @@ |
||||
<ng-container wp-isolated-query-space> |
||||
<filters-tab-inner #tabInner></filters-tab-inner> |
||||
<op-filters-tab-inner #tabInner></op-filters-tab-inner> |
||||
</ng-container> |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue