From 3ddde684818864b86c1e3453f9b2f09c1b715069 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 11 Jan 2021 12:15:24 +0100 Subject: [PATCH] Allow ActionInput type=color Ref https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input/color Signed-off-by: Christoph Wurst --- src/components/ActionInput/ActionInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ActionInput/ActionInput.vue b/src/components/ActionInput/ActionInput.vue index c6197618ec..0e91e3bf73 100644 --- a/src/components/ActionInput/ActionInput.vue +++ b/src/components/ActionInput/ActionInput.vue @@ -124,7 +124,7 @@ export default { validator(type) { return ['date', 'datetime-local', 'month', 'number', 'password', 'search', 'tel', - 'text', 'time', 'url', 'week'].indexOf(type) > -1 + 'text', 'time', 'url', 'week', 'color'].indexOf(type) > -1 }, }, /**