Skip to content

Commit

Permalink
Fix install modal
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyis committed Apr 24, 2018
1 parent 4c8e8e0 commit 4056c0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/PluginInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default class PluginInfo extends React.Component {
action: 'Opened install modal',
category: 'plugin',
label: 'open_install_modal',
value: this.props.plugin.meta.name
value: this.props.plugin.name
})

this.setState({
Expand Down Expand Up @@ -129,7 +129,7 @@ export default class PluginInfo extends React.Component {
return (
<React.Fragment>
<InstallModal
name={plugin.meta.name}
name={plugin.name}
isOpen={this.state.isModalOpen}
closeModal={this.closeInstallModal}
/>
Expand Down

0 comments on commit 4056c0f

Please sign in to comment.