Merge pull request 'develop' (#44) from develop into main
oggui-debian-package/pipeline/head This commit looks good Details
oggui-debian-package/pipeline/tag This commit looks good Details

Reviewed-on: #44
pull/45/head 0.23.2
Manuel Aranda Rosales 2025-09-09 22:18:24 +02:00
commit 486e8e625e
2 changed files with 10 additions and 2 deletions

View File

@ -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

View File

@ -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: () => {