Browse Source

fix(gui): fix word wrapping issue in comments

re #581

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/614/head
Pranav C 3 years ago
parent
commit
36084f7477
  1. 13
      packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue

13
packages/nc-gui/components/project/spreadsheet/components/expandedForm.vue

@ -185,7 +185,7 @@
mdi-account-circle
</v-icon>
</v-list-item-icon>
<div class="flex-grow-1">
<div class="flex-grow-1" style="min-width: 0">
<p class="mb-1 caption edited-text">
{{ isYou(log.user) ? 'You' : log.user }} {{
log.op_type === 'COMMENT' ? 'commented' : (
@ -193,10 +193,8 @@
)
}}
</p>
<p v-if="log.op_type === 'COMMENT'" class="caption mb-0">
<v-chip small :color="colors[2]">
{{ log.description }}
</v-chip>
<p v-if="log.op_type === 'COMMENT'" class="caption mb-0 nc-chip" :style="{background :colors[2]}">
{{ log.description }}
</p>
<p v-else class="caption mb-0" style="word-break: break-all;" v-html="log.details" />
@ -601,6 +599,11 @@ h5 {
//justify-content: flex-end;
background: var(--v-backgroundColorDefault-base);
}
.nc-chip{
padding:8px;
border-radius: 8px;
}
</style>
<!--
/**

Loading…
Cancel
Save