Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion admin-client/src/lib/jsonTreeView.js
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ function JSONTreeView(name_, value_, parent_, isRoot_) {
}
return i >= j
? n | (+b << i)
: ((n >> (i + 1)) << (i + 1)) | n % ((n >> i) << i) | (+b << i);
: ((n >> (i + 1)) << (i + 1)) | (n % ((n >> i) << i)) | (+b << i);
}

function refresh(silent) {
Expand Down
2 changes: 1 addition & 1 deletion admin-client/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2377,4 +2377,4 @@ yaml@^1.10.2:
yocto-queue@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"react-highlight": "^0.15.0",
"react-notification-system-redux": "^2.0.1",
"react-redux": "8.1.2",
"react-router-dom": "^6.18.0",
"react-router-dom": "^6.30.3",
"redis": "^3.0.0",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.2",
Expand Down Expand Up @@ -201,6 +201,7 @@
"*.jsx": "eslint"
},
"resolutions": {
"lodash": "^4.17.22",
"**/cheerio": "1.0.0-rc.12",
"cookie": "^0.7.0",
"nanoid": "^3.3.8"
Expand Down
Loading
Loading