fix: app-config settings are ignored in OHIF v3 (#3114)

* fix: app-config settings are ignored in OHIF v3
github issue #3051

Remove default route from baked in routes if showStudyList is false.

* fix: app-config settings are ignored in OHIF v3
github issue #3051

PR feedback - simply remove default route from the baked in routes.

* fix: app-config settings are ignored in OHIF v3
github issue #3051

PR feedback - updated CS3D tools version
This commit is contained in:
Joe Boccanfuso 2023-01-12 16:38:12 -05:00 committed by GitHub
parent 97dc2f9049
commit a997198587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 10 deletions

View File

@ -46,6 +46,6 @@
"@babel/runtime": "7.16.3",
"classnames": "^2.2.6",
"@cornerstonejs/core": "^0.25.0",
"@cornerstonejs/tools": "^0.34.0"
"@cornerstonejs/tools": "^0.34.2"
}
}

View File

@ -45,7 +45,7 @@
"@babel/runtime": "7.17.9",
"@cornerstonejs/core": "^0.25.0",
"@cornerstonejs/streaming-image-volume-loader": "^0.8.2",
"@cornerstonejs/tools": "^0.34.0",
"@cornerstonejs/tools": "^0.34.2",
"@kitware/vtk.js": "25.9.0",
"html2canvas": "^1.4.1",
"lodash.debounce": "4.0.8",

View File

@ -33,7 +33,7 @@
"@ohif/core": "^3.0.0",
"classnames": "^2.2.6",
"@cornerstonejs/core": "^0.25.0",
"@cornerstonejs/tools": "^0.34.0",
"@cornerstonejs/tools": "^0.34.2",
"@ohif/extension-cornerstone-dicom-sr": "^3.0.0",
"dcmjs": "^0.28.3",
"prop-types": "^15.6.2",

View File

@ -13,13 +13,6 @@ import PrivateRoute from './PrivateRoute';
// TODO: Include "routes" debug route if dev build
const bakedInRoutes = [
// WORK LIST
{
path: '/',
children: DataSourceWrapper,
private: true,
props: { children: WorkList },
},
{
path: '/debug',
children: Debug,