Turned on tooltip on kanban cards with shortDelay (#5991)
fixes: #5982 Demo: https://github.com/twentyhq/twenty/assets/58113282/6593381c-c01a-4259-9caa-8612247a9e95 --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
@ -262,7 +262,7 @@ export const RecordBoardCard = () => {
|
||||
recoilScopeId: recordId + fieldDefinition.fieldMetadataId,
|
||||
isLabelIdentifier: false,
|
||||
fieldDefinition: {
|
||||
disableTooltip: true,
|
||||
disableTooltip: false,
|
||||
fieldMetadataId: fieldDefinition.fieldMetadataId,
|
||||
label: fieldDefinition.label,
|
||||
iconName: fieldDefinition.iconName,
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import React, { ReactElement, useContext } from 'react';
|
||||
import { useTheme } from '@emotion/react';
|
||||
import styled from '@emotion/styled';
|
||||
import { AppTooltip, IconComponent } from 'twenty-ui';
|
||||
import { AppTooltip, IconComponent, TooltipDelay } from 'twenty-ui';
|
||||
|
||||
import { FieldContext } from '@/object-record/record-field/contexts/FieldContext';
|
||||
import { useFieldFocus } from '@/object-record/record-field/hooks/useFieldFocus';
|
||||
@ -136,6 +136,7 @@ export const RecordInlineCellContainer = ({
|
||||
noArrow
|
||||
place="bottom"
|
||||
positionStrategy="fixed"
|
||||
delay={TooltipDelay.shortDelay}
|
||||
/>
|
||||
)}
|
||||
</StyledLabelAndIconContainer>
|
||||
|
||||
Reference in New Issue
Block a user