-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(dialog): change order of button actions (#9021)
- Loading branch information
1 parent
0c26ddb
commit 230b297
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<h2 mat-dialog-title>Fruit</h2> | ||
<div mat-dialog-content>Which would you like to choose?</div> | ||
<div mat-dialog-actions> | ||
<button mat-button mat-dialog-close="apple" aria-label="Apple">Apple</button> | ||
<button mat-button mat-dialog-close="peach" aria-label="Peach">Peach</button> | ||
<button mat-button mat-dialog-close="apple" aria-label="Apple">Apple</button> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters