Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion frontend/web/components/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ const Tooltip: FC<TooltipProps> = ({
float={effect === 'float'}
afterShow={afterShow}
delayShow={delayShow}
style={{ wordBreak: 'break-word' }}
style={{ fontWeight: 'normal', wordBreak: 'break-word' }}
noArrow
/>
</>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { FC, useState } from 'react'
import Constants from 'common/constants'
import AppActions from 'common/dispatcher/app-actions'
import FeatureListStore from 'common/stores/feature-list-store'
import { useGetProjectQuery } from 'common/services/useProject'
Expand Down Expand Up @@ -163,17 +162,7 @@ const IdentityOverridesTab: FC<IdentityOverridesTabProps> = ({
className='no-pad identity-overrides-title'
title={
<>
<Tooltip
title={
<h5 className='mb-0'>
Identity Overrides{' '}
<Icon name='info-outlined' width={20} fill='#9DA4AE' />
</h5>
}
place='top'
>
{Constants.strings.IDENTITY_OVERRIDES_DESCRIPTION}
</Tooltip>
<h5 className='mb-0'>Identity Overrides</h5>
<div className='fw-normal transform-none mt-4'>
<InfoMessage collapseId='identity-overrides'>
Identity overrides override feature values for individual
Expand Down
Loading