Skip to content

Commit

Permalink
[MNT-24575] Fixed accesibility issue in DialogComponent. Fixed typo i…
Browse files Browse the repository at this point in the history
…n enum
  • Loading branch information
swapnil-verma-gl committed Dec 20, 2024
1 parent 1e97b60 commit fe7f046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/core/src/lib/dialogs/dialog/dialog.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ <h2 class="adf-dialog-title">{{ data.title | translate }}</h2>
*ngIf="!isCloseButtonHidden"
mat-icon-button
mat-dialog-close
title="{{'CLOSE' | translate }}"
data-automation-id="adf-dialog-close-button"
>
<mat-icon>close</mat-icon>
Expand Down
4 changes: 2 additions & 2 deletions lib/js-api/src/api/content-rest-api/model/sizeDetails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ export class SizeDetails {
}
}
export namespace SizeDetails {
export type StatusEnum = 'IN-PROGRESS' | 'COMPLETE' | 'NOT-INITIATED';
export type StatusEnum = 'IN-PROGRESS' | 'COMPLETED' | 'NOT-INITIATED';
export const StatusEnum = {
IN_PROGRESS: 'IN-PROGRESS' as StatusEnum,
COMPLETE: 'COMPLETE' as StatusEnum,
COMPLETE: 'COMPLETED' as StatusEnum,
NOT_INITIATED: 'NOT-INITIATED' as StatusEnum
};
}

0 comments on commit fe7f046

Please sign in to comment.