diff --git a/Frontend/src/components/xml/XmlTabbedInputComponent.vue b/Frontend/src/components/xml/XmlTabbedInputComponent.vue index ff0a2ba..0cd8b85 100644 --- a/Frontend/src/components/xml/XmlTabbedInputComponent.vue +++ b/Frontend/src/components/xml/XmlTabbedInputComponent.vue @@ -10,7 +10,7 @@ const props = defineProps( { stylizedName: {type: String, required: true}, data: {type: Array}, - tabCountLimit: {type: Number, required: false} + tabCountLimit: {type: Number, required: false, validator: (value) => typeof value == "number" && value > 0} } ) const emit = defineEmits(['update:modelValue']) diff --git a/Frontend/src/views/XSLTView.vue b/Frontend/src/views/XSLTView.vue index 164f36e..fc73b55 100644 --- a/Frontend/src/views/XSLTView.vue +++ b/Frontend/src/views/XSLTView.vue @@ -22,7 +22,7 @@ function updateVersion(newVersion: string) {
- +