Publish v8.4.1
This commit is contained in:
parent
e22829e2af
commit
385d22de27
|
@ -3,6 +3,11 @@
|
|||
https://github.com/josdejong/jsoneditor
|
||||
|
||||
|
||||
## 2020-01-25, version 8.4.1
|
||||
|
||||
- Fix `console.log` in production code. Oopsie.
|
||||
|
||||
|
||||
## 2020-01-25, version 8.4.0
|
||||
|
||||
- Added CSS classes `jsoneditor-expanded` and `jsoneditor-collapsed` on array
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "8.4.0",
|
||||
"version": "8.4.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "jsoneditor",
|
||||
"version": "8.4.0",
|
||||
"version": "8.4.1",
|
||||
"main": "./index",
|
||||
"description": "A web-based tool to view, edit, format, and validate JSON",
|
||||
"tags": [
|
||||
|
|
|
@ -2238,8 +2238,6 @@ export class Node {
|
|||
const tr = this.dom.tr
|
||||
if (tr) {
|
||||
if (this.type === 'array' || this.type === 'object') {
|
||||
console.log(this.getPath(), this.type, this.expanded, tr)
|
||||
|
||||
addClassName(tr, 'jsoneditor-expandable')
|
||||
|
||||
if (this.expanded) {
|
||||
|
|
Loading…
Reference in New Issue