From ea79155f29fe7603bea0c5ce31bdb8540854ea89 Mon Sep 17 00:00:00 2001 From: Ihar Date: Mon, 20 Jan 2025 18:19:53 +0500 Subject: [PATCH] fix: irec4 filters[3141] --- .../document-path/document-path.component.scss | 1 - .../source-addon-config.component.html | 14 ++++++++++---- .../source-addon-config.component.scss | 12 ++++++++++++ 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/modules/policy-engine/helpers/document-path/document-path.component.scss b/frontend/src/app/modules/policy-engine/helpers/document-path/document-path.component.scss index e22eef4268..778171411f 100644 --- a/frontend/src/app/modules/policy-engine/helpers/document-path/document-path.component.scss +++ b/frontend/src/app/modules/policy-engine/helpers/document-path/document-path.component.scss @@ -13,4 +13,3 @@ .input-end-tooltip { margin-left: 2px; } - diff --git a/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.html b/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.html index 01229735e3..9a811ce4e0 100644 --- a/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.html +++ b/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.html @@ -9,7 +9,9 @@ [disabled]="readonly" (onChange)="onSave()" placeholder="Select a data type" - [options]="dataTypeOptions"> + [options]="dataTypeOptions" + appendTo="body" + > @@ -75,7 +77,9 @@ [disabled]="readonly" (onChange)="onSave()" placeholder="Select order direction" - [options]="orderDirectionOptions"> + [options]="orderDirectionOptions" + appendTo="body" + > @@ -119,14 +123,16 @@ [disabled]="readonly" (onChange)="onSave()" placeholder="Select a condition" - [options]="fieldTypeOptions"> + [options]="fieldTypeOptions" + appendTo="body" + > Field - + diff --git a/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.scss b/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.scss index e69de29bb2..afe9ae6233 100644 --- a/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.scss +++ b/frontend/src/app/modules/policy-engine/policy-configuration/blocks/documents/source-addon-config/source-addon-config.component.scss @@ -0,0 +1,12 @@ +.propRowCell { + height: 38px; +} + +.propRowCell.field { + display: block; + height: 44px; + + ::ng-deep .container { + height: 40px; + } +}