Add option to disable local storage cache of servers
This commit is contained in:
parent
343f06c57d
commit
1cbef867ce
@ -4,6 +4,7 @@ window.config = {
|
||||
extensions: [],
|
||||
showStudyList: true,
|
||||
filterQueryParam: false,
|
||||
disableServersCache: false,
|
||||
servers: {
|
||||
dicomWeb: [
|
||||
{
|
||||
|
||||
@ -24,6 +24,10 @@ const preloadedState = {
|
||||
...sessionStorage.loadState(),
|
||||
};
|
||||
|
||||
if (window.disableServersCache === true) {
|
||||
delete preloadedState.servers;
|
||||
}
|
||||
|
||||
const store = createStore(
|
||||
rootReducer,
|
||||
preloadedState,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user