Fixed not overriding additional name after save.

This commit is contained in:
2026-02-25 15:51:32 +01:00
parent 75a178cbf4
commit ce351328bf
+1
View File
@@ -294,6 +294,7 @@ export const useLabelEditorStore = defineStore('label_editor_store', {
this.article.bio_info = updatedArticle.bio_info; this.article.bio_info = updatedArticle.bio_info;
this.article.allergens_text = updatedArticle.allergens_text; this.article.allergens_text = updatedArticle.allergens_text;
this.article.topm_id = updatedArticle.topm_id; this.article.topm_id = updatedArticle.topm_id;
this.article.additional_name = updatedArticle.additional_name;
this.addNotification(false, 'Artikel "' + article.name + '" aktualisiert'); this.addNotification(false, 'Artikel "' + article.name + '" aktualisiert');
} catch { } catch {