remove reload action

This commit is contained in:
Cilibiu Bogdan
2019-07-12 08:54:34 +03:00
parent 5fda232bd1
commit 2c957e8fa7
@@ -111,7 +111,6 @@ export class ContentManagementService {
node.entry.isFavorite = true; node.entry.isFavorite = true;
}); });
this.store.dispatch(new SetSelectedNodesAction(nodes)); this.store.dispatch(new SetSelectedNodesAction(nodes));
this.store.dispatch(new ReloadDocumentListAction());
}); });
} }
} }
@@ -123,7 +122,6 @@ export class ContentManagementService {
node.entry.isFavorite = false; node.entry.isFavorite = false;
}); });
this.store.dispatch(new SetSelectedNodesAction(nodes)); this.store.dispatch(new SetSelectedNodesAction(nodes));
this.store.dispatch(new ReloadDocumentListAction());
}); });
} }
} }