mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
* feat: workspace health fix target column map * fix: remove log * feat: refactor health fixer * fix: default-value issue and health check not working with composite * fix: enhance target column map fix * feat: create workspace migrations for target-column-map issues * feat: enhance workspace-health issue detection
5 lines
170 B
TypeScript
5 lines
170 B
TypeScript
export const customNamePrefix = '_';
|
|
|
|
export const computeCustomName = (name: string, isCustom: boolean) => {
|
|
return isCustom ? `${customNamePrefix}${name}` : name;
|
|
};
|