You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What should happen? unnullifyTranslations() must recognize that changes made by the form builder can cause translated to become invalid. We should probably use a constant list of translatable columns when unnullifying a translation.
The text was updated successfully, but these errors were encountered:
jnm
added
bug
Things broken and not working as expected
UI & UX
User interface problems and improvements
labels
Oct 5, 2020
@jnm@magicznyleszek I just ran into this same issue on my end (added a hint to a form that had no previous hints) and noticed that the formbuilder can't be used after refreshing or reopening the form. Is this new or what you had experienced?
Consider that we have a form with one named language,
French (fr)
, and only labels—no hints:If we open this in the form builder, add a hint ("My brother"), and save it:
unnullifyTranslations()
will see thattranslated
in the asset content contains onlylabel
;label
tolabel::French (fr)
, but it will not alterhint
;PATCH
the asset with this content:null
(from the barehint
) andFrench (fr)
:What should happen?
unnullifyTranslations()
must recognize that changes made by the form builder can causetranslated
to become invalid. We should probably use a constant list of translatable columns when unnullifying a translation.The text was updated successfully, but these errors were encountered: