Type fixes and website fix (#13825)

Various fixes
This commit is contained in:
Félix Malfait
2025-08-11 17:36:53 +02:00
committed by GitHub
parent 68ce13a1be
commit 32cdb66802
10 changed files with 133 additions and 124 deletions
@@ -118,15 +118,17 @@ export const generateColumns = (
<StyledHeaderLabel id={formatSafeId(column.key)}>
{column.label}
</StyledHeaderLabel>
{column.description &&
createPortal(
<AppTooltip
anchorSelect={`#${formatSafeId(column.key)}`}
place="top"
content={column.description}
/>,
document.body,
)}
<>
{column.description &&
createPortal(
<AppTooltip
anchorSelect={`#${formatSafeId(column.key)}`}
place="top"
content={column.description}
/>,
document.body,
)}
</>
</StyledHeaderContainer>
),
editable: column.fieldType.type !== 'checkbox',