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 { ...@@ -120,12 +120,12 @@ export default {
}, },
props: { props: {
height: { height: {
type: String, type: [String, Number],
default: '300' default: 300
}, },
width: { width: {
type: String, type: [String, Number],
default: '450' default: 450
}, },
title: String, title: String,
confirmText: String, confirmText: String,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment