From 5984e289fd285310da5071b86dfbff382325a28a Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 13 Jan 2021 08:32:41 +0100 Subject: [PATCH] Allow ActionInput type=email Ref https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/email Signed-off-by: Thomas Citharel --- src/components/ActionInput/ActionInput.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/ActionInput/ActionInput.vue b/src/components/ActionInput/ActionInput.vue index 0e91e3bf73..f737f076e7 100644 --- a/src/components/ActionInput/ActionInput.vue +++ b/src/components/ActionInput/ActionInput.vue @@ -124,7 +124,8 @@ export default { validator(type) { return ['date', 'datetime-local', 'month', 'number', 'password', 'search', 'tel', - 'text', 'time', 'url', 'week', 'color'].indexOf(type) > -1 + 'text', 'time', 'url', 'week', 'color', + 'email'].indexOf(type) > -1 }, }, /**