Skip to content

Commit

Permalink
[OGUI-1539] Request entire file via jsroot and update webui dependency (
Browse files Browse the repository at this point in the history
#2558)

* uses the `+` parameter in JSROOT to request entire file
* updates web-ui version which improves sever logging
* Bumps patch version of QCG for release
  • Loading branch information
graduta authored Aug 20, 2024
1 parent 8b717a3 commit 11c648f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion QualityControl/lib/services/QcObject.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export class QcObjectService {
* @returns {Promise<JSON.Error>} - JSON version of the object
*/
async _getJsRootFormat(url) {
const file = await this._rootService.openFile(url);
const file = await this._rootService.openFile(`${url}+`);
const root = await file.readObject('ccdb_object');
root['_typename'] = root['mTreatMeAs'] || root['_typename'];

Expand Down
28 changes: 14 additions & 14 deletions QualityControl/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions QualityControl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aliceo2/qc",
"version": "3.8.3",
"version": "3.8.4",
"description": "O2 Quality Control Web User Interface",
"author": "George Raduta",
"contributors": [
Expand Down Expand Up @@ -34,7 +34,7 @@
"index.js"
],
"dependencies": {
"@aliceo2/web-ui": "2.7.0",
"@aliceo2/web-ui": "2.7.1",
"joi": "17.13.3",
"jsroot": "7.7.2"
},
Expand Down

0 comments on commit 11c648f

Please sign in to comment.