1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

Updates snapshots and fixes bugs

This commit is contained in:
Amir Raminfar
2021-11-22 14:22:04 -08:00
parent cdca0efd05
commit da35a13d04
10 changed files with 32 additions and 33 deletions

View File

@@ -13,7 +13,7 @@
<div class="level is-justify-content-start">
<div class="level-left">
<div class="level-item">
<octicon-trash-24 style="margin-right: 1em" />
<octicon-trash-24 class="mr-4" />
</div>
</div>
<div class="level-right">
@@ -25,7 +25,7 @@
<div class="level is-justify-content-start">
<div class="level-left">
<div class="level-item">
<octicon-download-24 style="margin-right: 1em" />
<octicon-download-24 class="mr-4" />
</div>
</div>
<div class="level-right">
@@ -33,16 +33,34 @@
</div>
</div>
</a>
<hr class="dropdown-divider" />
<a class="dropdown-item" @click="showSearch = true">
<div class="level is-justify-content-start">
<div class="level-left">
<div class="level-item">
<mdi-light-magnify class="mr-4" />
</div>
</div>
<div class="level-right">
<div class="level-item">Search</div>
</div>
</div>
</a>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { onMounted, onUnmounted, PropType } from "vue";
import hotkeys from "hotkeys-js";
import config from "@/stores/config";
import { Container } from "@/types/Container";
import hotkeys from "hotkeys-js";
import { onMounted, onUnmounted, PropType, ref } from "vue";
import { useSearchFilter } from "@/composables/search";
const { showSearch } = useSearchFilter();
const { base } = config;
const props = defineProps({
onClearClicked: {
@@ -55,8 +73,6 @@ const props = defineProps({
},
});
const { base } = config;
const onHotkey = (event: Event) => {
props.onClearClicked(event);
event.preventDefault();