remove datasource config component
This commit is contained in:
@@ -527,8 +527,9 @@ function WorkList({
|
|||||||
}
|
}
|
||||||
: undefined;
|
: undefined;
|
||||||
|
|
||||||
const { component: dataSourceConfigurationComponent } =
|
// comment agar user tidak bisa mengganti config dari depan
|
||||||
customizationService.get('ohif.dataSourceConfigurationComponent') ?? {};
|
// const { component: dataSourceConfigurationComponent } =
|
||||||
|
// customizationService.get('ohif.dataSourceConfigurationComponent') ?? {};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex h-screen flex-col bg-black">
|
<div className="flex h-screen flex-col bg-black">
|
||||||
@@ -552,10 +553,13 @@ function WorkList({
|
|||||||
clearFilters={() => setFilterValues(defaultFilterValues)}
|
clearFilters={() => setFilterValues(defaultFilterValues)}
|
||||||
isFiltering={isFiltering(filterValues, defaultFilterValues)}
|
isFiltering={isFiltering(filterValues, defaultFilterValues)}
|
||||||
onUploadClick={uploadProps ? () => show(uploadProps) : undefined}
|
onUploadClick={uploadProps ? () => show(uploadProps) : undefined}
|
||||||
|
// getDataSourceConfigurationComponent={
|
||||||
|
// dataSourceConfigurationComponent
|
||||||
|
// ? () => dataSourceConfigurationComponent()
|
||||||
|
// : undefined
|
||||||
|
// }
|
||||||
getDataSourceConfigurationComponent={
|
getDataSourceConfigurationComponent={
|
||||||
dataSourceConfigurationComponent
|
undefined
|
||||||
? () => dataSourceConfigurationComponent()
|
|
||||||
: undefined
|
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user