From ce351328bf7124bba06c35f27ecc89a8d1de75ea Mon Sep 17 00:00:00 2001 From: Matthias Lodner Date: Wed, 25 Feb 2026 15:51:32 +0100 Subject: [PATCH] Fixed not overriding additional name after save. --- frontend/app/store/labelEditorStore.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/app/store/labelEditorStore.ts b/frontend/app/store/labelEditorStore.ts index 12c47c7..bc285ee 100644 --- a/frontend/app/store/labelEditorStore.ts +++ b/frontend/app/store/labelEditorStore.ts @@ -294,6 +294,7 @@ export const useLabelEditorStore = defineStore('label_editor_store', { this.article.bio_info = updatedArticle.bio_info; this.article.allergens_text = updatedArticle.allergens_text; this.article.topm_id = updatedArticle.topm_id; + this.article.additional_name = updatedArticle.additional_name; this.addNotification(false, 'Artikel "' + article.name + '" aktualisiert'); } catch {