commit
486e8e625e
|
@ -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
|
||||
|
|
|
@ -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: () => {
|
||||
|
|
Loading…
Reference in New Issue