diff --git a/webapp/components/ContributionForm/index.vue b/webapp/components/ContributionForm/index.vue index cbaff79f3..20b3d6b9b 100644 --- a/webapp/components/ContributionForm/index.vue +++ b/webapp/components/ContributionForm/index.vue @@ -139,8 +139,8 @@ export default { }, returnLocaleName(locale) { if ( - this.contribution.language === locale.code || - (!this.contribution.language && this.$i18n.locale() === locale.code) + (this.contribution && this.contribution.language === locale.code) || + (!this.contribution && this.$i18n.locale() === locale.code) ) { return locale }