라인 삭제

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

View File

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