mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-22 09:36:43 +03:00
fix regexp to extract session name
This commit is contained in:
parent
a87564c9c4
commit
890ecf8b56
|
@ -121,7 +121,7 @@ const enhancer = compose(
|
||||||
function getDebugSessionKey() {
|
function getDebugSessionKey() {
|
||||||
// You can write custom logic here!
|
// You can write custom logic here!
|
||||||
// By default we try to read the key from ?debug_session=<key> in the address bar
|
// By default we try to read the key from ?debug_session=<key> in the address bar
|
||||||
const matches = window.location.href.match(/[?&]debug_session=([^&]+)\b/);
|
const matches = window.location.href.match(/[?&]debug_session=([^&#]+)\b/);
|
||||||
return (matches && matches.length > 0)? matches[1] : null;
|
return (matches && matches.length > 0)? matches[1] : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ const enhancer = compose(
|
||||||
DevTools.instrument(),
|
DevTools.instrument(),
|
||||||
persistState(
|
persistState(
|
||||||
window.location.href.match(
|
window.location.href.match(
|
||||||
/[?&]debug_session=([^&]+)\b/
|
/[?&]debug_session=([^&#]+)\b/
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
|
@ -7,7 +7,7 @@ const enhancer = compose(
|
||||||
DevTools.instrument(),
|
DevTools.instrument(),
|
||||||
persistState(
|
persistState(
|
||||||
window.location.href.match(
|
window.location.href.match(
|
||||||
/[?&]debug_session=([^&]+)\b/
|
/[?&]debug_session=([^&#]+)\b/
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user