From e44ed3b8008a458a95b4ccd2816d6cf4c4ecad0c Mon Sep 17 00:00:00 2001 From: Damian Maring <1820250+DamianLion@users.noreply.github.com> Date: Thu, 27 Feb 2020 21:55:50 +0100 Subject: [PATCH] Add XL to Modal Validator While are using the new Version in our Application we set the modal to xl and it is working I just want to add it also to the validator so we do not get any errors anymore --- src/components/modal/CModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modal/CModal.vue b/src/components/modal/CModal.vue index 0a75a68a..d4128903 100644 --- a/src/components/modal/CModal.vue +++ b/src/components/modal/CModal.vue @@ -68,7 +68,7 @@ export default { title: String, size: { type: String, - validator: val => ['', 'sm', 'lg'].includes(val) + validator: val => ['', 'sm', 'lg', 'xl'].includes(val) }, color: String, borderColor: String,