Skip to content

Commit

Permalink
Prevent sample alignment overlay from closing when changing steps
Browse files Browse the repository at this point in the history
  • Loading branch information
axelboc authored and marcus-oscarsson committed Jul 26, 2023
1 parent fd8f2e7 commit bb7be31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/PopInput/PopInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default class PopInput extends React.Component {
// Only update if value actually changed
this.props.onSave(this.props.pkey, value);
}
if (this.props.immediate) {
if (!this.props.inplace && this.props.immediate) {
this.hideOverlay();
}
}
Expand Down

0 comments on commit bb7be31

Please sign in to comment.