Skip to content

Commit

Permalink
refactor: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Oct 31, 2024
1 parent d6b7157 commit 9ae3c22
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const componentProps = computed(() => {
:loading="loading"
>
<template #default="{ compact }">
<slot name="header" v-bind="{ compact }"/>
<slot name="header" v-bind="{ compact }" />
</template>
</document-entries-header>
</template>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Document/DocumentThread.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup>
import { reactive, ref, computed, onMounted, nextTick, useTemplateRef, watch } from 'vue'
import { reactive, ref, computed, onMounted, nextTick, useTemplateRef } from 'vue'
import { onBeforeRouteUpdate } from 'vue-router'
import { useStore } from 'vuex'
import { findIndex, reduce } from 'lodash'
Expand Down
2 changes: 1 addition & 1 deletion src/composables/search-filter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { computed, nextTick, watch } from 'vue'
import { clone, cloneDeep, get, identity, last, toString } from 'lodash'
import { get, identity, last, toString } from 'lodash'
import { useStore } from 'vuex'
import { useRouter, useRoute } from 'vue-router'
import { useI18n } from 'vue-i18n'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ const asyncPreviewComponent = computed(() => {
})
</script>


<template>
<div class="d-flex flex-grow-1 document__preview">
<template v-if="previewComponent">
Expand Down

0 comments on commit 9ae3c22

Please sign in to comment.