Various fixes (#11108)

Fixes many bug regarding TableCell and InlineCells
This commit is contained in:
Charles Bochet
2025-03-22 14:19:10 +01:00
committed by GitHub
parent 692e08f0d4
commit ccf60284cf
61 changed files with 473 additions and 374 deletions

View File

@ -1,6 +1,13 @@
import { isDefined } from 'twenty-shared';
export const getRecordFieldInputId = (
recordId: string,
fieldName?: string,
prefix?: string,
): string => {
if (isDefined(prefix)) {
return `${prefix}-${recordId}-${fieldName}`;
}
return `${recordId}-${fieldName}`;
};