Skip to content

Commit

Permalink
fix: irec4 filters[3141]
Browse files Browse the repository at this point in the history
  • Loading branch information
Ihar committed Jan 20, 2025
1 parent 938bad0 commit ea79155
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@
.input-end-tooltip {
margin-left: 2px;
}

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
[disabled]="readonly"
(onChange)="onSave()"
placeholder="Select a data type"
[options]="dataTypeOptions">
[options]="dataTypeOptions"
appendTo="body"
>
</p-dropdown>

</td>
Expand Down Expand Up @@ -75,7 +77,9 @@
[disabled]="readonly"
(onChange)="onSave()"
placeholder="Select order direction"
[options]="orderDirectionOptions">
[options]="orderDirectionOptions"
appendTo="body"
>
</p-dropdown>
</td>
</tr>
Expand Down Expand Up @@ -119,14 +123,16 @@
[disabled]="readonly"
(onChange)="onSave()"
placeholder="Select a condition"
[options]="fieldTypeOptions">
[options]="fieldTypeOptions"
appendTo="body"
>
</p-dropdown>
</td>
</tr>
<tr class="propRow subRow" [attr.collapse]="propHidden.filtersGroup || propHidden.filters[i]">
<td class="propRowCol"></td>
<td class="propRowCell cellName">Field</td>
<td class="propRowCell">
<td class="propRowCell field">
<document-path [(value)]="field.field" [readonly]="readonly" (change)="onSave()"></document-path>
</td>
</tr>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.propRowCell {
height: 38px;
}

.propRowCell.field {
display: block;
height: 44px;

::ng-deep .container {
height: 40px;
}
}

0 comments on commit ea79155

Please sign in to comment.