mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
* [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
25 lines
773 B
HTML
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>
|