From 2c7ef71cd0f0f65e30382692ed7bb1bd77cda650 Mon Sep 17 00:00:00 2001 From: andrewwallacespeckle Date: Thu, 24 Apr 2025 12:32:24 +0100 Subject: [PATCH] Fix isLimited condition --- .../components/viewer/anchored-point/thread/Comment.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend-2/components/viewer/anchored-point/thread/Comment.vue b/packages/frontend-2/components/viewer/anchored-point/thread/Comment.vue index d53b4bc33..2d76cb72e 100644 --- a/packages/frontend-2/components/viewer/anchored-point/thread/Comment.vue +++ b/packages/frontend-2/components/viewer/anchored-point/thread/Comment.vue @@ -66,5 +66,5 @@ const createdAt = computed(() => { } }) -const isLimited = computed(() => !props.comment.rawText) +const isLimited = computed(() => !props.comment.text)