mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-26 13:31:45 +03:00
Label fix
This commit is contained in:
parent
47d7e19570
commit
1233b58099
@ -39,13 +39,14 @@ export const ActivityTargetsInlineCell = ({
|
||||
scope: ActivityEditorHotkeyScope.ActivityTargets,
|
||||
}}
|
||||
IconLabel={IconArrowUpRight}
|
||||
showLabel={true}
|
||||
editModeContent={
|
||||
<ActivityTargetInlineCellEditMode
|
||||
activity={activity}
|
||||
activityTargetObjectRecords={activityTargetObjectRecords}
|
||||
/>
|
||||
}
|
||||
label="Relations"
|
||||
label="Relations:"
|
||||
displayModeContent={
|
||||
<ActivityTargetChips
|
||||
activityTargetObjectRecords={activityTargetObjectRecords}
|
||||
|
@ -62,7 +62,7 @@ const StyledClickableContainer = styled.div`
|
||||
const StyledInlineCellBaseContainer = styled.div`
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
|
||||
width: 100%;
|
||||
display: flex;
|
||||
|
||||
gap: ${({ theme }) => theme.spacing(1)};
|
||||
@ -141,7 +141,7 @@ export const RecordInlineCellContainer = ({
|
||||
onMouseEnter={handleContainerMouseEnter}
|
||||
onMouseLeave={handleContainerMouseLeave}
|
||||
>
|
||||
{(!!IconLabel || !!label) && (
|
||||
{(IconLabel || label) && (
|
||||
<StyledLabelAndIconContainer id={labelId}>
|
||||
{IconLabel && (
|
||||
<StyledIconContainer>
|
||||
@ -160,7 +160,7 @@ export const RecordInlineCellContainer = ({
|
||||
content={label}
|
||||
clickable
|
||||
noArrow
|
||||
place="left"
|
||||
place="bottom"
|
||||
positionStrategy="fixed"
|
||||
/>
|
||||
)}
|
||||
|
Loading…
Reference in New Issue
Block a user