We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20ba86b commit 7f4665dCopy full SHA for 7f4665d
src/store.ts
@@ -472,7 +472,7 @@ const createMlStore = (logging: Logging) => {
472
},
473
474
addActionRecordings(id: ActionData["ID"], recs: RecordingData[]) {
475
- return set(({ actions }) => {
+ return set(({ actions, dataWindow, project, projectEdited }) => {
476
const updatedActions = actions.map((action) => {
477
if (action.ID === id) {
478
return {
@@ -485,6 +485,13 @@ const createMlStore = (logging: Logging) => {
485
486
actions: updatedActions,
487
model: undefined,
488
+ ...updateProject(
489
+ project,
490
+ projectEdited,
491
+ updatedActions,
492
+ undefined,
493
+ dataWindow
494
+ ),
495
};
496
});
497
0 commit comments