feat: Display current project and board in page title

This commit is contained in:
Maksim Eltyshev
2023-02-20 11:41:22 +01:00
parent e4372a4be7
commit 0847f24cf7
2 changed files with 26 additions and 3 deletions

View File

@@ -8,11 +8,13 @@ const mapStateToProps = (state) => {
const isSocketDisconnected = selectors.selectIsSocketDisconnected(state);
const currentModal = selectors.selectCurrentModal(state);
const currentProject = selectors.selectCurrentProject(state);
const currentBoard = selectors.selectCurrentBoard(state);
return {
isSocketDisconnected,
currentModal,
currentProject,
currentBoard,
isInitializing: isCoreInitializing,
};
};