Browse Source

chore(gui-v2): add cursor-pointer to list item

pull/3353/head
Wing-Kam Wong 2 years ago
parent
commit
662a53bad8
  1. 2
      packages/nc-gui-v2/components/virtual-cell/components/ListChildItems.vue

2
packages/nc-gui-v2/components/virtual-cell/components/ListChildItems.vue

@ -94,7 +94,7 @@ const expandedFormRow = ref()
</a-button>
</div>
<template v-if="(isNew && state?.[column?.title]?.length) || childrenList?.pageInfo?.totalRows">
<div class="flex-1 overflow-auto min-h-0 scrollbar-thin-dull px-12">
<div class="flex-1 overflow-auto min-h-0 scrollbar-thin-dull px-12 cursor-pointer">
<a-card
v-for="(row, i) of childrenList?.list ?? state?.[column?.title] ?? []"
:key="i"

Loading…
Cancel
Save