Skip to content

Commit

Permalink
fix(alert): type and name props are optional (#14815)
Browse files Browse the repository at this point in the history
  • Loading branch information
llwwbb authored and manucorporat committed Aug 29, 2018
1 parent 1cbb371 commit 99a2925
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/components/alert/alert-interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export interface AlertOptions {
}

export interface AlertInput {
type: TextFieldTypes | 'checkbox' | 'radio';
name: string;
type?: TextFieldTypes | 'checkbox' | 'radio';
name?: string;
placeholder?: string;
value?: string;
label?: string;
Expand Down

0 comments on commit 99a2925

Please sign in to comment.