We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e20fe79 + 256f63d commit 5dc6f67Copy full SHA for 5dc6f67
packages/bruno-app/src/components/SingleLineEditor/index.js
@@ -107,7 +107,7 @@ class SingleLineEditor extends Component {
107
_onEdit = () => {
108
if (!this.ignoreChangeEvent && this.editor) {
109
this.cachedValue = this.editor.getValue();
110
- if (this.props.onChange) {
+ if (this.props.onChange && (this.props.value !== this.cachedValue)) {
111
this.props.onChange(this.cachedValue);
112
}
113
0 commit comments