Skip to content

Commit

Permalink
Merge pull request #123 from glific/fix/bug-in-labels
Browse files Browse the repository at this point in the history
Fixed a bug in labels
  • Loading branch information
akanshaaa19 committed Jul 10, 2024
2 parents 674b26a + a160172 commit 7a66d8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@glific/flow-editor",
"license": "AGPL-3.0",
"repository": "git://github.com/glific/floweditor.git",
"version": "1.26.3-8",
"version": "1.26.3-9",
"description": "'Standalone flow editing tool designed for use within the Glific suite of messaging tools'",
"browser": "umd/flow-editor.min.js",
"unpkg": "umd/flow-editor.min.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default class SendMsgForm extends React.Component<
if (
(this.props.nodeSettings.originalNode.ghost ||
this.props.nodeSettings.originalNode.node.exits[0].destination_uuid) &&
interactiveMessageId !== originalAction.id
(!originalAction || interactiveMessageId !== originalAction.id)
) {
this.props.resetNodeEditing();
this.props.updateRouter(
Expand Down

0 comments on commit 7a66d8b

Please sign in to comment.