mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
set new to false to existing processes
This commit is contained in:
@@ -126,9 +126,9 @@ export class ProcessState {
|
||||
const processes = state.processes.map(
|
||||
(process: Process) => {
|
||||
if (process.selected === true) {
|
||||
return { ...process, selected: false };
|
||||
return { ...process, selected: false, new: false };
|
||||
}
|
||||
return { ...process };
|
||||
return { ...process, new: false };
|
||||
}
|
||||
);
|
||||
ctx.patchState({
|
||||
|
||||
Reference in New Issue
Block a user