|
|
|
@ -18,7 +18,7 @@ |
|
|
|
<div class="tb-form-panel no-border no-padding"> |
|
|
|
<div class="tb-form-table" [formGroup]="relationFiltersFormGroup"> |
|
|
|
<div class="tb-form-table-header"> |
|
|
|
<div class="tb-form-table-header-cell flex-18"></div> |
|
|
|
<div *ngIf="enableNotOption" class="tb-form-table-header-cell flex-18"></div> |
|
|
|
<div class="tb-form-table-header-cell flex-50">{{ 'relation.relation-type' | translate }}</div> |
|
|
|
<div class="tb-form-table-header-cell flex-50">{{ 'entity.entity-types' | translate }}</div> |
|
|
|
<div class="tb-form-table-header-cell actions-header"></div> |
|
|
|
@ -26,7 +26,7 @@ |
|
|
|
<div class="tb-form-table-body" formArrayName="relationFilters"> |
|
|
|
<div class="tb-form-table-row align-start" |
|
|
|
*ngFor="let relationFilterControl of relationFiltersFormArray.controls; let $index = index"> |
|
|
|
<mat-chip-listbox class="flex-18 center-stretch" [formControl]="relationFilterControl.get('negate')"> |
|
|
|
<mat-chip-listbox *ngIf="enableNotOption" class="flex-18 center-stretch" [formControl]="relationFilterControl.get('negate')"> |
|
|
|
<mat-chip-option color="primary" [value]="true">{{ 'relation.not' | translate}}</mat-chip-option> |
|
|
|
</mat-chip-listbox> |
|
|
|
<tb-relation-type-autocomplete subscriptSizing="dynamic" |
|
|
|
|