Skip to content
Snippets Groups Projects
Commit bc549dd1 authored by Benedikt Heinrichs's avatar Benedikt Heinrichs
Browse files

Fix: Url if no label is present

parent afa59dbf
Branches Experimental/Bugfixes
Tags
3 merge requests!71Chore: 1.13.0,!67Sprint/2021 22,!66Fixes
......@@ -143,11 +143,15 @@ export default Vue.extend({
},
beforeMount() {
i18n.locale = this.languageLocale;
this.nodeName = FieldReader.getNodeName(this.formFieldInformation);
this.label = FieldReader.getLocalizedField(
this.formFieldInformation,
this.languageLocale
);
this.nodeName = FieldReader.getNodeName(this.formFieldInformation);
if (this.label === '') {
this.label = this.nodeName;
}
if (
this.checkField(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment