Skip to content

Commit

Permalink
fix(alert): update alert min/max interface (#15987)
Browse files Browse the repository at this point in the history
Fixes #15986
  • Loading branch information
abennouna authored and adamdbradley committed Oct 23, 2018
1 parent a74e565 commit a0c60ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/components/alert/alert-interface.ts
Expand Up @@ -29,8 +29,8 @@ export interface AlertInput {
disabled?: boolean;
id?: string;
handler?: (input: AlertInput) => void;
min?: number;
max?: number;
min?: string | number;
max?: string | number;
}

export interface AlertButton {
Expand Down

0 comments on commit a0c60ff

Please sign in to comment.