diff --git a/packages/communication/src/messages/outgoing/furnieditor/FurniEditorSearchComposer.ts b/packages/communication/src/messages/outgoing/furnieditor/FurniEditorSearchComposer.ts index 35351f0..d15ae9c 100644 --- a/packages/communication/src/messages/outgoing/furnieditor/FurniEditorSearchComposer.ts +++ b/packages/communication/src/messages/outgoing/furnieditor/FurniEditorSearchComposer.ts @@ -4,9 +4,9 @@ export class FurniEditorSearchComposer implements IMessageComposer; - constructor(query: string, type: string, page: number) + constructor(query: string, type: string, page: number, sortField: string = 'id', sortDir: string = 'asc') { - this._data = [ query, type, page ]; + this._data = [ query, type, page, sortField, sortDir ]; } dispose(): void