diff --git a/packages/nc-gui/composables/useMultiSelect/index.ts b/packages/nc-gui/composables/useMultiSelect/index.ts index 2292f0cabb..0b83c63aa3 100644 --- a/packages/nc-gui/composables/useMultiSelect/index.ts +++ b/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,