Skip to content

Commit

Permalink
Make Doc component load synchronously
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmyersdev committed Sep 6, 2024
1 parent 11454c5 commit 9e0455b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/DocList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export default defineComponent({
@keypress.enter.prevent="selectDoc(doc.id)"
@click="selectDoc(doc.id)"
>
<LazyDoc v-bind="doc" :allow-discard="isEditing" class="h-96" />
<Doc v-bind="doc" :allow-discard="isEditing" class="h-96" />
<div v-if="doc.selected" class="flex items-center justify-center rounded absolute inset-0 bg-layer bg-opacity-50">
<Icon name="CheckCircle" size="3rem" />
</div>
Expand Down

0 comments on commit 9e0455b

Please sign in to comment.