From d78a26ea0878a6e1d8f214203ff21aa04abdcb1c Mon Sep 17 00:00:00 2001 From: marzban-dev Date: Thu, 13 Mar 2025 20:32:38 +0330 Subject: [PATCH] Updated --- .../components/product/ProductComments.vue | 8 +- .../components/product/ProductDetails.vue | 16 +- frontend/components/product/ProductHero.vue | 157 ++++++++++-------- frontend/components/product/ProductVideo.vue | 16 +- 4 files changed, 110 insertions(+), 87 deletions(-) diff --git a/frontend/components/product/ProductComments.vue b/frontend/components/product/ProductComments.vue index 1c0c592..ebb75f5 100644 --- a/frontend/components/product/ProductComments.vue +++ b/frontend/components/product/ProductComments.vue @@ -24,7 +24,7 @@ const { mutateAsync: createComment, isPending: isCreateCommentPending } = const submitComment = async () => { if (userComment.value.length > 3) { await createComment({ - content: userComment.value, + content: userComment.value }); userComment.value = ""; @@ -36,11 +36,11 @@ const submitComment = async () => {