Skip to content

Commit

Permalink
Merge pull request #167 from cal-smith/a11y
Browse files Browse the repository at this point in the history
fix(modal): alert modal interface incorrect
  • Loading branch information
cal-smith authored Oct 13, 2018
2 parents b8b6153 + 39e9638 commit 37be1b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modal/alert-modal.interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ export interface ModalButton {
/**
* Button type
*/
type: "primary" | "secondary" | "tertiary" | "ghost" | "danger" | "danger--primary" = "primary";
type: "primary" | "secondary" | "tertiary" | "ghost" | "danger" | "danger--primary";
/**
* Callback for the button `click` event
*/
click: function;
click: Function;
}

0 comments on commit 37be1b7

Please sign in to comment.