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