mirror of https://github.com/apache/druid.git
Web console: remove console.log (#12094)
* rm console.log * force path-parse to 1.0.7
This commit is contained in:
parent
37112d24e2
commit
476d0bf4be
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue