@@ -3,6 +3,7 @@ import { connect } from "react-redux";
33
44import { toJS } from "../../helper" ;
55import withInitialLoading from "../Loading/withInitialLoading" ;
6+ import { clipboardPaste } from "../Navbar/actions" ;
67import { storeSnackbarMessage } from "../Notifications/actions" ;
78
89import {
@@ -38,7 +39,8 @@ const mapStateToProps = (state) => {
3839 currentStep : state . getIn ( [ "overview" , "currentStep" ] ) ,
3940 projectToAdd : state . getIn ( [ "overview" , "projectToAdd" ] ) ,
4041 dialogTitle : state . getIn ( [ "overview" , "dialogTitle" ] ) ,
41- allowedIntents : state . getIn ( [ "login" , "allowedIntents" ] )
42+ allowedIntents : state . getIn ( [ "login" , "allowedIntents" ] ) ,
43+ clipboard : state . getIn ( [ "navbar" , "clipboard" ] )
4244 } ;
4345} ;
4446
@@ -61,7 +63,8 @@ const mapDispatchToProps = (dispatch) => {
6163 addProjectTag : ( tag ) => dispatch ( addProjectTag ( tag ) ) ,
6264 removeProjectTag : ( tag ) => dispatch ( removeProjectTag ( tag ) ) ,
6365 addCustomImage : ( imageBase64 ) => dispatch ( addCustomImage ( imageBase64 ) ) ,
64- removeCustomImage : ( imageBase64 ) => dispatch ( removeCustomImage ( imageBase64 ) )
66+ removeCustomImage : ( imageBase64 ) => dispatch ( removeCustomImage ( imageBase64 ) ) ,
67+ pasteClipboard : ( ) => dispatch ( clipboardPaste ( ) )
6568 } ;
6669} ;
6770
0 commit comments