mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 09:14:59 +03:00
Make columns itself scrollable, fix action creation when moving card, little refactoring
This commit is contained in:
14
client/src/containers/FixedWrapperContainer.js
Normal file
14
client/src/containers/FixedWrapperContainer.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import { connect } from 'react-redux';
|
||||
|
||||
import { pathSelector } from '../selectors';
|
||||
import FixedWrapper from '../components/FixedWrapper';
|
||||
|
||||
const mapStateToProps = (state) => {
|
||||
const { projectId } = pathSelector(state);
|
||||
|
||||
return {
|
||||
projectId,
|
||||
};
|
||||
};
|
||||
|
||||
export default connect(mapStateToProps)(FixedWrapper);
|
||||
Reference in New Issue
Block a user