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 009c95c commit b47e629Copy full SHA for b47e629
src/internal-packages/query/lib/store/query-store.js
@@ -201,7 +201,7 @@ const QueryStore = Reflux.createStore({
201
}
202
203
// convert all query inputs into their string values and validate them
204
- let inputStrings = _.mapValues(query, EJSON.stringify);
+ let inputStrings = _.mapValues(_.pick(query, QUERY_PROPERTIES), EJSON.stringify);
205
let inputValids = _.mapValues(inputStrings, (val, label) => {
206
return this._validateInput(label, val) !== false;
207
});
0 commit comments