라인 삭제

This commit is contained in:
kimdaae328 2025-01-24 15:15:49 +09:00
parent e177ddec1a
commit 88c9071828
2 changed files with 2 additions and 4 deletions

View File

@ -12,8 +12,7 @@
<li
v-for="child in comment.children"
:key="child.id"
class="pt-6 ps-10 border-top"
style="border-color:blue !important;"
class="pt-6 ps-10"
>
<BoardComment :comment="child" :isPlusButton="false" @submitComment="addChildComment" />
</li>

View File

@ -3,8 +3,7 @@
<li
v-for="comment in comments"
:key="comment.id"
class="mt-6 border-bottom"
style="border-color:red !important;"
class="mt-6"
>
<BoardComment :comment="comment" @submitComment="addComment" />
</li>