Skip to content

Commit

Permalink
add inverted indication for and/or filters
Browse files Browse the repository at this point in the history
  • Loading branch information
infacc committed Jul 13, 2023
1 parent 183ced2 commit a1fe552
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@
</mat-card-header>
<mat-card-content>
<ng-container *ngIf="children != null">
<span *ngIf="inverted" class="t-subheading">Not:</span>
<qhana-plugin-filter-node *ngFor="let child of children; let i = index" [filterObject]="children[i]" [index]="i"
[depth]="depth + 1" (childChange)="updateChild($event)" (delete)="deleteChild($event)"></qhana-plugin-filter-node>
</ng-container>
<div class="config-filter" *ngIf="value != null">
<h3 *ngIf="inverted">Not:</h3>
<span *ngIf="inverted" class="t-subheading">Not:</span>
<mat-form-field class="inner-form-field">
<mat-label>Filter Type:</mat-label>
<mat-select [value]="type" (valueChange)="changeType($event)">
Expand Down

0 comments on commit a1fe552

Please sign in to comment.