Browse Source

refactor: skip cell paste for custom link

pull/9051/head
Pranav C 5 months ago
parent
commit
fec885ce26
  1. 4
      packages/nc-gui/composables/useMultiSelect/index.ts

4
packages/nc-gui/composables/useMultiSelect/index.ts

@ -907,8 +907,8 @@ export function useMultiSelect(
const rowObj = unref(data)[activeCell.row]
const columnObj = unref(fields)[activeCell.col]
// handle belongs to column
if (isBt(columnObj)) {
// handle belongs to column, skip custom links
if (isBt(columnObj) && !columnObj.meta?.custom) {
const pasteVal = convertCellData(
{
value: clipboardData,

Loading…
Cancel
Save