Files
alfresco-content-app/projects/aca-content/folder-rules/src/rule-details/actions/rule-action.ui-component.html
swapnil-verma-gl 34c8976af6 [ACS-6211] Resolved UI alignment issue in create rule dialog (#3505)
* [ACS-6211] Resolved UI alignment issue in create rule dialog

* [ACS-6211] Changed appearance of mat-select form field to standard to match with other action form fields

* [ACS-6211] Fixed unit tests

* [ACS-6138] Updating ADW Styling after ACA changes for angular material - Expansion panel items

* [ACS-6211] Fixed failing E2E
2023-12-06 13:36:00 +05:30

25 lines
773 B
HTML

<form class="aca-rule-action__form" [formGroup]="form">
<mat-form-field class="aca-rule-action-full-width" appearance="standard">
<mat-select
formControlName="actionDefinitionId"
data-automation-id="rule-action-select"
[placeholder]="'ACA_FOLDER_RULES.RULE_DETAILS.ACTION_SELECT_PLACEHOLDER' | translate">
<mat-option
*ngFor="let actionDefinition of actionDefinitions"
[value]="actionDefinition.id">
{{ actionDefinition.title }}
</mat-option>
</mat-select>
</mat-form-field>
<adf-card-view
*ngIf="cardViewItems?.length > 0"
data-automation-id="rule-action-card-view"
[properties]="cardViewItems"
class="aca-rule-action-full-width"
[editable]="!readOnly">
</adf-card-view>
</form>