Publish v8.4.1

This commit is contained in:
jos 2020-01-25 13:24:01 +01:00
parent e22829e2af
commit 385d22de27
4 changed files with 7 additions and 4 deletions

View File

@ -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

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "jsoneditor",
"version": "8.4.0",
"version": "8.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -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": [

View File

@ -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) {