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.
1 parent e1e1b84 commit 039a0dbCopy full SHA for 039a0db
package.json
@@ -78,7 +78,7 @@
78
"lodash": "^3.9.3",
79
"moment": "^2.10.3",
80
"mongodb-extended-json": "^1.3.1",
81
- "mongodb-language-model": "^0.2.0",
+ "mongodb-language-model": "^0.2.1",
82
"mongodb-schema": "^3.0.0",
83
"numeral": "^1.5.3",
84
"octicons": "https://github.com/github/octicons/archive/v2.2.0.tar.gz",
src/refine-view/index.js
@@ -74,6 +74,8 @@ module.exports = AmpersandView.extend({
74
},
75
submit: function(evt) {
76
evt.preventDefault();
77
- this.buttonClicked();
+ if (this.valid) {
+ this.buttonClicked();
+ }
}
});
0 commit comments