Web console: remove console.log (#12094)

* rm console.log

* force path-parse to 1.0.7
This commit is contained in:
Vadim Ogievetsky 2021-12-22 19:31:23 -08:00 committed by GitHub
parent 37112d24e2
commit 476d0bf4be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -16549,9 +16549,9 @@
"dev": true
},
"path-parse": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
"integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
"integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
"path-to-regexp": {
"version": "1.7.0",

View File

@ -89,6 +89,7 @@
"lodash.escape": "^4.0.1",
"memoize-one": "^5.1.1",
"numeral": "^2.0.6",
"path-parse": "^1.0.7",
"react": "^16.14.0",
"react-ace": "^9.5.0",
"react-diff-viewer": "^3.1.1",

View File

@ -135,7 +135,6 @@ export class QueryInput extends React.PureComponent<QueryInputProps, QueryInputS
}
static makeDocHtml(item: ItemDescription) {
console.log(item.syntax, escape(item.syntax));
return `
<div class="doc-name">${item.name}</div>
<div class="doc-syntax">${escape(item.syntax)}</div>