From 081e06b20883599fe81bd59d8110536a343644d6 Mon Sep 17 00:00:00 2001 From: duckietm Date: Fri, 22 May 2026 11:05:45 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Catalog=20Editor,=20now=20you=20?= =?UTF-8?q?can=20also=20edit=20the=20text1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../messages/outgoing/catalog/CatalogAdminSavePageComposer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageComposer.ts b/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageComposer.ts index 4147028..2d32ba4 100644 --- a/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageComposer.ts +++ b/packages/communication/src/messages/outgoing/catalog/CatalogAdminSavePageComposer.ts @@ -4,9 +4,9 @@ export class CatalogAdminSavePageComposer implements IMessageComposer; - constructor(pageId: number, caption: string, caption2: string, layout: string, iconType: number, minRank: number, visible: boolean, enabled: boolean, orderNum: number, parentId: number, headline: string, teaser: string, textDetails: string, targetCatalogType: string, catalogMode: string = 'NORMAL') + constructor(pageId: number, caption: string, caption2: string, layout: string, iconType: number, minRank: number, visible: boolean, enabled: boolean, orderNum: number, parentId: number, headline: string, teaser: string, textDetails: string, targetCatalogType: string, catalogMode: string = 'NORMAL', pageText1: string = '') { - this._data = [ pageId, caption, caption2, layout, iconType, minRank, visible, enabled, orderNum, parentId, headline, teaser, textDetails, targetCatalogType, catalogMode ]; + this._data = [ pageId, caption, caption2, layout, iconType, minRank, visible, enabled, orderNum, parentId, headline, teaser, textDetails, targetCatalogType, catalogMode, pageText1 ]; } dispose(): void