Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
59f4b0da4f | ||
|
|
e99e6ebd49 |
@@ -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);
|
||||
|
||||
|
||||
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user