diff --git a/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx b/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx index 5170848ed..49150429b 100644 --- a/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx +++ b/packages/twenty-front/src/modules/object-record/record-inline-cell/components/RecordInlineCellContainer.tsx @@ -141,7 +141,11 @@ export const RecordInlineCellContainer = ({ }; const showEditButton = - buttonIcon && !isInlineCellInEditMode && isHovered && !editModeContentOnly; + buttonIcon && + !isInlineCellInEditMode && + isHovered && + !editModeContentOnly && + !isDisplayModeContentEmpty; const theme = useTheme(); const labelId = `label-${entityId}-${fieldDefinition?.metadata?.fieldName}`;