From 1e91ea658e0a28e32df5d080bebbf8c83a024bf6 Mon Sep 17 00:00:00 2001 From: Manuel Aranda Date: Tue, 9 Sep 2025 19:22:57 +0200 Subject: [PATCH 1/2] refs #2768. Partition bug fixed --- .../partition-assistant/partition-assistant.component.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ogWebconsole/src/app/components/groups/components/client-main-view/partition-assistant/partition-assistant.component.ts b/ogWebconsole/src/app/components/groups/components/client-main-view/partition-assistant/partition-assistant.component.ts index cf4a8dd..a6320bd 100644 --- a/ogWebconsole/src/app/components/groups/components/client-main-view/partition-assistant/partition-assistant.component.ts +++ b/ogWebconsole/src/app/components/groups/components/client-main-view/partition-assistant/partition-assistant.component.ts @@ -655,10 +655,13 @@ export class PartitionAssistantComponent implements OnInit, AfterViewInit, OnDes clients: this.selectedClients.map((client: any) => client.uuid), }; + const commandTaskId = result['@id'] || result.taskId['@id']; + const order = result.executionOrder || 1; + this.http.post(`${this.baseUrl}/command-task-scripts`, { - commandTask: result['@id'], + commandTask: commandTaskId, parameters: bulkPayload.partitions, - order: 1, + order: order, type: 'partition-assistant', }).subscribe({ next: () => { From d338e4d5fa4e84fdd6351d3c07006a88c448bdd9 Mon Sep 17 00:00:00 2001 From: Manuel Aranda Date: Tue, 9 Sep 2025 19:23:55 +0200 Subject: [PATCH 2/2] updated changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66f67d7..3b05197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## [0.23.2] - 2025-09-09 +### Fixed +- Se ha corregido un bug en el asistente de particionado relacionado con las tareas programadas. + +--- ## [0.23.1] - 2025-09-09 ### Fixed - Se ha corregido el formato de la fecha a la hora de cambiar las tareas programadas