Browse Source

Merge pull request #6635 from nocodb/nc-fix/copy-follow-up

fix: copy shared base follow up
pull/6638/head
mertmit 11 months ago committed by GitHub
parent
commit
948272fe98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/dlg/SharedBaseDuplicate.vue

2
packages/nc-gui/components/dlg/SharedBaseDuplicate.vue

@ -71,7 +71,7 @@ const _duplicate = async () => {
<NcSelect
v-model:value="selectedWorkspace"
class="w-full"
:options="workspacesList.map((w) => ({ label: w.title, value: w.id }))"
:options="workspacesList.map((w) => ({ label: `${w.title[0].toUpperCase()}${w.title.slice(1)}`, value: w.id }))"
placeholder="Select Workspace"
/>
</template>

Loading…
Cancel
Save