Browse Source

fix(nc-gui): comment default bg color issue

pull/8629/head
Ramesh Mane 1 month ago
parent
commit
031d77d89b
  1. 2
      packages/nc-gui/components/smartsheet/expanded-form/Comments.vue

2
packages/nc-gui/components/smartsheet/expanded-form/Comments.vue

@ -175,7 +175,7 @@ watch(commentsWrapperEl, () => {
<div v-for="comment of comments" :key="comment.id" class="nc-comment-item"> <div v-for="comment of comments" :key="comment.id" class="nc-comment-item">
<div <div
:class="{ :class="{
'hover:bg-gray-200 bg-white': comment.id !== editComment?.id, 'hover:bg-gray-200': comment.id !== editComment?.id,
}" }"
class="group gap-3 overflow-hidden flex items-start px-3 py-1" class="group gap-3 overflow-hidden flex items-start px-3 py-1"
> >

Loading…
Cancel
Save