Skip to content
Snippets Groups Projects
Commit c98d6c92 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

allow numeric values for width and height in Stud.IP's Vue dialog component, fixes #4788

Closes #4788

Merge request studip/studip!3582
parent 1879865c
No related branches found
No related tags found
No related merge requests found
......@@ -120,12 +120,12 @@ export default {
},
props: {
height: {
type: String,
default: '300'
type: [String, Number],
default: 300
},
width: {
type: String,
default: '450'
type: [String, Number],
default: 450
},
title: String,
confirmText: String,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment