Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
intrn(chat): remove data reactivity
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Oct 13, 2022
1 parent aa8bb3e commit 4ea2b9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const props = defineProps<{
const isAcceptingImage = props.accept.includes("image/")
const isAcceptingFile = props.accept.includes("*/")
const subKind = computed(() => (isAcceptingImage ? "image" : "file"))
const subKind = isAcceptingImage ? "image" : "file"
const filename = ref<string|null>(null)
const hasExtracted = computed<boolean>(() => filename.value !== null)
Expand Down

0 comments on commit 4ea2b9b

Please sign in to comment.