* Add widgets and interactive dialogs * Update snapshots * Updates per feedback and fix slash command * Fix style * Update styling * Updates per feedback * Updates per feedback * More styling changes * Remove extra space above message menu
15 lines
476 B
JavaScript
15 lines
476 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {connect} from 'react-redux';
|
|
|
|
import InteractiveDialogController from './interactive_dialog_controller';
|
|
|
|
function mapStateToProps(state) {
|
|
return {
|
|
triggerId: state.entities.integrations.dialogTriggerId,
|
|
dialog: state.entities.integrations.dialog || {},
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(InteractiveDialogController);
|