Compare commits

...

2 Commits

Author SHA1 Message Date
Amir Raminfar
59f4b0da4f Release 4.1.7 2022-09-20 14:31:07 -07:00
Amir Raminfar
e99e6ebd49 Fixes bubble for search and #1886 2022-09-20 14:30:54 -07:00
2 changed files with 7 additions and 2 deletions

View File

@@ -50,7 +50,12 @@ import FuzzySearchModal from "@/components/FuzzySearchModal.vue";
const collapseNav = ref(false);
const { oruga } = useProgrammatic();
const { authorizationNeeded } = config;
const { Meta_K, Ctrl_K } = useMagicKeys();
const { Meta_K, Ctrl_K } = useMagicKeys({
passive: false,
onEventFired(e) {
if ((e.ctrlKey || e.metaKey) && e.key === "k" && e.type === "keydown") e.preventDefault();
},
});
const containerStore = useContainerStore();
const { activeContainers, visibleContainers } = storeToRefs(containerStore);

View File

@@ -1,6 +1,6 @@
{
"name": "dozzle",
"version": "4.1.6",
"version": "4.1.7",
"description": "Realtime log viewer for docker containers. ",
"homepage": "https://github.com/amir20/dozzle#readme",
"bugs": {