I was not able to use the "Create New" button in the crm app

Hi all,
in the crm app in this path : apps/crm/frontend/src/components/Controls/Link.vue
in line number 44 : after removed condition in div element <div v-if=“attrs.onCreate”>
it is showing “Create New” button in the link field dropdown bottom
but if I click this button it is showing this error message in the console:
“TypeError: E(…).onCreate is not a function”

has anyone resolved this feature in crm app ?

Since the condition for checking whether onCreate exists (v-if="attrs.onCreate", which verifies its presence) was removed, the “Create New” button is always displayed. However, if onCreate is not defined and the button is clicked, an error occurs because onCreate is not found.