From a0c60ffd1ebc811ef3806748016f929663a1129a Mon Sep 17 00:00:00 2001 From: Abdelaziz Bennouna Date: Tue, 23 Oct 2018 02:42:19 +0100 Subject: [PATCH] fix(alert): update alert min/max interface (#15987) Fixes #15986 --- core/src/components/alert/alert-interface.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/alert/alert-interface.ts b/core/src/components/alert/alert-interface.ts index 0870f8f829..f1995602e3 100644 --- a/core/src/components/alert/alert-interface.ts +++ b/core/src/components/alert/alert-interface.ts @@ -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 {