Browse Source

Fix formatting.

pull/768/head
Sebastian 4 years ago
parent
commit
9625e470e5
  1. 6
      frontend/app/shared/components/search/queries/filter-comparison.component.html

6
frontend/app/shared/components/search/queries/filter-comparison.component.html

@ -48,8 +48,9 @@
</sqx-reference-input> </sqx-reference-input>
</ng-container> </ng-container>
<ng-container *ngSwitchCase="'status'"> <ng-container *ngSwitchCase="'status'">
<sqx-dropdown [items]="fieldModel.extra" <sqx-dropdown
valueProperty="status" valueProperty="status"
[items]="fieldModel.extra"
[ngModel]="filter.value" [ngModel]="filter.value"
(ngModelChange)="changeValue($event)" (ngModelChange)="changeValue($event)"
[canSearch]="false"> [canSearch]="false">
@ -60,8 +61,9 @@
</ng-container> </ng-container>
<ng-container *ngSwitchCase="'user'"> <ng-container *ngSwitchCase="'user'">
<ng-container *ngIf="contributorsState.isLoaded | async; else noPermission"> <ng-container *ngIf="contributorsState.isLoaded | async; else noPermission">
<sqx-dropdown [items]="contributorsState.contributors | async" <sqx-dropdown
valueProperty="token" valueProperty="token"
[items]="contributorsState.contributors | async"
[ngModel]="filter.value" [ngModel]="filter.value"
(ngModelChange)="changeValue($event)" (ngModelChange)="changeValue($event)"
searchProperty="contributorName"> searchProperty="contributorName">

Loading…
Cancel
Save