Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Coscine
frontend
libraries
form-generator
Commits
bc549dd1
Commit
bc549dd1
authored
Nov 19, 2021
by
Benedikt Heinrichs
Browse files
Fix: Url if no label is present
parent
afa59dbf
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/components/WrapperInput.vue
View file @
bc549dd1
...
...
@@ -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
(
...
...
CoscineBot
⚙
@CoscineBot
mentioned in commit
72dcdfbd
·
Nov 19, 2021
mentioned in commit
72dcdfbd
mentioned in commit 72dcdfbdac5437b6d69831b3b2b4ba4541d6db7a
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment