Skip to content

Commit

Permalink
fix configurer WebUI update bug
Browse files Browse the repository at this point in the history
  • Loading branch information
eternal-flame-AD authored and jmattheis committed Feb 9, 2019
1 parent 8b3faef commit 23442bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/plugin/PluginDetailView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ class ConfigurerPanel extends Component<IConfigurerPanelProps, {unsavedChanges:
onClick={() => {
const newConfig = this.state.unsavedChanges;
this.props.save(newConfig!).then(() => {
this.setState({unsavedChanges: ''});
this.setState({unsavedChanges: null});
});
}}>
<Typography variant="button">Save</Typography>
Expand Down

0 comments on commit 23442bf

Please sign in to comment.