|
|
|
@ -360,7 +360,11 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
<tr class="nc-grid-row"> |
|
|
|
|
<td key="row-index" class="caption nc-grid-cell pl-5 pr-1"> |
|
|
|
|
<div class="align-center flex gap-1 min-w-[55px]"> |
|
|
|
|
<div v-if="!readonly" class="nc-row-no text-xs text-gray-500" :class="{ hidden: row.rowMeta.selected }"> |
|
|
|
|
<div |
|
|
|
|
v-if="!readonly && !isLocked" |
|
|
|
|
class="nc-row-no text-xs text-gray-500" |
|
|
|
|
:class="{ hidden: row.rowMeta.selected }" |
|
|
|
|
> |
|
|
|
|
{{ rowIndex + 1 }} |
|
|
|
|
</div> |
|
|
|
|
<div |
|
|
|
@ -371,7 +375,7 @@ const expandForm = (row: Row, state: Record<string, any>) => {
|
|
|
|
|
<a-checkbox v-model:checked="row.rowMeta.selected" /> |
|
|
|
|
</div> |
|
|
|
|
<span class="flex-1" /> |
|
|
|
|
<div v-if="!readonly" class="nc-expand" :class="{ 'nc-comment': row.rowMeta?.commentCount }"> |
|
|
|
|
<div v-if="!readonly && !isLocked" class="nc-expand" :class="{ 'nc-comment': row.rowMeta?.commentCount }"> |
|
|
|
|
<span |
|
|
|
|
v-if="row.rowMeta?.commentCount" |
|
|
|
|
class="py-1 px-3 rounded-full text-xs cursor-pointer select-none transform hover:(scale-110)" |
|
|
|
|