-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possibility to create a person from the company page #5724
Comments
Disclaimer: This comment was automatically generated with AI. It can give some useful hints as to where to look for, but sometimes it can also give very inaccurate answers so takes this with a pinch of salt :). To implement the feature to create a person from the company page, follow these steps:
Example code snippet for button click handler: const handleNewPersonClick = async () => {
const personData = { /* collect data from form */ };
const personId = await createPerson(personData);
if (personId) {
// logic to auto-select the person in the dropdown
}
}; Ensure to integrate the form/modal for input and handle the state updates accordingly. References/packages/twenty-chrome-extension/src/contentScript/extractPersonProfile.ts |
Hey @pacyL2K19 great suggestion which we actually just implemented 😁 #5551 |
Scope & Context
To enhance the user experience, we should allow users to create people from the company page with a
New
button below the dropdown of the people suggestion.Current behavior
Currently you only have a possibility to pick up a person from the existed list of people, if the person doesn't exist yet, you have to first create him from the people page then get back to the company page
Expected behavior
Adding a
New
button to allow users to create person, then auto selection after the creation succeededTechnical inputs
N/A
@FelixMalfait Is this something we can implement to improve the ux on this page? Please have a look
The text was updated successfully, but these errors were encountered: