8000 Add XL to Modal Validator by DamianLion · Pull Request #66 · coreui/coreui-vue · GitHub
[go: up one dir, main page]

Skip to content

Add XL to Modal Validator #66

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
  • Loading branch information
DamianLion authored Feb 27, 2020
commit e44ed3b8008a458a95b4ccd2816d6cf4c4ecad0c
2 changes: 1 addition & 1 deletion src/components/modal/CModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
0