Browse Source

Merge pull request #6015 from nocodb/fix/6014-clipboard-copy

fix: use custom useCopy composable for copy
pull/6036/head
Pranav C 1 year ago committed by GitHub
parent
commit
a2de75f4b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      packages/nc-gui/components/smartsheet/expanded-form/Header.vue

3
packages/nc-gui/components/smartsheet/expanded-form/Header.vue

@ -5,6 +5,7 @@ import {
ReloadRowDataHookInj,
iconMap,
isMac,
useCopy,
useExpandedFormStoreOrThrow,
useSmartsheetRowStoreOrThrow,
useSmartsheetStoreOrThrow,
@ -46,7 +47,7 @@ const iconColor = '#1890ff'
const { dashboardUrl } = useDashboard()
const { copy } = useClipboard()
const { copy } = useCopy()
const copyRecordUrl = () => {
copy(

Loading…
Cancel
Save