Skip to content
Snippets Groups Projects
Commit 8668d2e6 authored by Sébastien DA ROCHA's avatar Sébastien DA ROCHA :bicyclist:
Browse files

Merge branch 'redmine-issues/14450' into 'develop'

REDMINE_ISSUE-14450|Édition type de signalement - ordre par position pas respecté

See merge request !463
parents 68e34c33 5da7dd21
No related branches found
No related tags found
1 merge request!463REDMINE_ISSUE-14450|Édition type de signalement - ordre par position pas respecté
......@@ -312,7 +312,7 @@ export default {
fillCustomFormData(customFormData) {
for (const el in customFormData) {
if (el && this.form[el] && customFormData[el]) {
if (el && this.form[el] && customFormData[el] !== undefined && customFormData[el] !== null) {
//* check if is an object, because data from api is a string, while import from django is an object
this.form[el].value = customFormData[el].value
? customFormData[el].value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment