[ACS-4050]critical issues from csv 880282, 880449, 880280 (#8005)

* title for adfSelectProcessDropdown button, issue 880282

* 880449, 880280 fix

* review comments fix

* review comments
This commit is contained in:
arohilaGL
2022-11-29 15:04:54 +05:30
committed by GitHub
parent ec6ede4fc5
commit dea5f21894
4 changed files with 9 additions and 6 deletions

View File

@@ -15,9 +15,10 @@
(selectionChange)="onAppSelectionChange($event)"
[(ngModel)]="selectedApplication"
data-automation-id="adf-start-process-apps-drop-down">
<mat-option
<mat-option
*ngFor="let application of applications"
[value]="application"
role="option"
[attr.data-automation-id]="'adf-start-process-apps-option-' + application.name">
{{ application.name }}
</mat-option>
@@ -75,7 +76,7 @@
{{ 'ADF_PROCESS_LIST.START_PROCESS.ERROR.SPACE_VALIDATOR' | translate }}
</mat-error>
</mat-form-field>
<ng-container *ngIf="!isProcessDefinitionsLoading ; else showStartFormLoadingTemplate">
<ng-container *ngIf="isProcessDefinitionSelected() ; else emptyProcessDefTemplate">
<ng-container *ngIf="hasStartForm(); else noStartFormTemplate">
@@ -96,7 +97,7 @@
</adf-start-form>
</ng-container>
<ng-template #noStartFormTemplate>
<adf-empty-content
<adf-empty-content
class="adf-start-process-empty-template"
[icon]="'assessment'"
[title]="'ADF_PROCESS_LIST.START_PROCESS.NO_START_FORM' | translate">
@@ -141,5 +142,5 @@
[icon]="'assessment'"
[title]="'ADF_PROCESS_LIST.START_PROCESS.NO_PROCESS_DEFINITIONS' | translate">
</adf-empty-content>
</ng-template>
</ng-template>
</ng-template>