Skip to content

Commit

Permalink
Merge pull request #1662 from nextcloud/fix/action-input-type-color
Browse files Browse the repository at this point in the history
Allow ActionInput type=color
  • Loading branch information
PVince81 authored Jan 12, 2021
2 parents 32d2f45 + 3ddde68 commit 4c57164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ActionInput/ActionInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
},
/**
Expand Down

0 comments on commit 4c57164

Please sign in to comment.