Fixing table being announced for button (#22024)

* Fixing table being announced for button

* Fixing issue in the component

* Reverting other changes
This commit is contained in:
Aasim Khan
2023-02-27 11:24:58 -08:00
committed by GitHub
parent 4fd6a57afc
commit dbd1c1b5b3

View File

@@ -74,7 +74,7 @@ class FormItem {
<model-component-wrapper [descriptor]="item.descriptor" [modelStore]="modelStore" [style.width]="getComponentWidth(item)" [style.height]="getRowHeight(item)">
</model-component-wrapper>
</div>
<div *ngIf="itemHasActions(item)" class="form-item-row form-actions-table form-item-last-row">
<div *ngIf="itemHasActions(item)" class="form-item-row form-actions-table form-item-last-row" role="presentation">
<div *ngFor="let actionItem of getActionComponents(item)" class="form-actions-cell" >
<model-component-wrapper [descriptor]="actionItem.descriptor" [modelStore]="modelStore">
</model-component-wrapper>