</eg-org-select>
<ng-container *ngIf="searchTermDatatypes[t.field] == 'link'">
<ng-container *ngIf="searchFieldLinkedClasses[t.field] === 'acqpro'">
- <eg-combobox *ngIf="t.op != '__fuzzy'"
+ <eg-combobox *ngIf="t.op != '__fuzzy' && t.op != '__not,__fuzzy'"
[idlClass]="searchFieldLinkedClasses[t.field]"
[selectedId]="t.value1"
(onChange)="t.value1 = $event ? $event.id : ''">
</eg-combobox>
- <input [ngModelOptions]="{standalone: true}" [(ngModel)]="t.value1" type="text" *ngIf="t.op == '__fuzzy'" class="form-control" />
+ <input [ngModelOptions]="{standalone: true}" [(ngModel)]="t.value1" type="text" *ngIf="t.op == '__fuzzy' || t.op == '__not,__fuzzy'" class="form-control" />
</ng-container>
<ng-container *ngIf="searchFieldLinkedClasses[t.field] === 'au'">
<eg-combobox *ngIf="!t.op.includes('__fuzzy')"
term.value2 = '';
}
if (this.searchTermDatatypes[term.field] === 'link') {
- if (oldOp === '__fuzzy' || term.op === '__fuzzy') {
+ if (oldOp === '__fuzzy' || term.op === '__fuzzy' ||
+ oldOp === '__not,__fuzzy' || term.op === '__not,__fuzzy'
+ ) {
term.value1 = '';
term.value2 = '';
}