@impakers/debug 1.4.14 → 1.4.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react.js +1 -1
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +1 -1
- package/dist/react.mjs.map +1 -1
- package/package.json +1 -1
package/dist/react.mjs
CHANGED
|
@@ -4620,7 +4620,7 @@ function ImpakersDebugProvider({ endpoint, getUser }) {
|
|
|
4620
4620
|
}, []);
|
|
4621
4621
|
useEffect6(() => {
|
|
4622
4622
|
function handleKeyDown(e) {
|
|
4623
|
-
if ((e.ctrlKey || e.metaKey) && e.shiftKey && e.key === ".") {
|
|
4623
|
+
if ((e.ctrlKey || e.metaKey) && e.shiftKey && (e.key === "." || e.key === ">" || e.code === "Period")) {
|
|
4624
4624
|
e.preventDefault();
|
|
4625
4625
|
if (hidden) {
|
|
4626
4626
|
setHidden(false);
|