Skip to content

Commit

Permalink
chore: fixed focus related issue by removing unwanted Tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
abpaul1993 committed Jan 10, 2025
1 parent 5508dbf commit 18b9b71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import {
import Button from '../Button/Button';
import FlyoutMenu, { FlyoutMenuDirection } from '../FlyoutMenu/FlyoutMenu';
import { handleSpecificKeyDown, useOnClickOutside } from '../../utils/componentUtilityFunctions';
import { Tooltip } from '../Tooltip';

import {
getIntervalValue,
Expand Down Expand Up @@ -1358,9 +1357,7 @@ const DateTimePicker = ({
})}
tabIndex={0}
>
<Tooltip triggerText={tooltipField} showIcon={false}>
{tooltipValue}
</Tooltip>
{tooltipField}
</div>
{invalidState && !hasIconOnly ? (
<p
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import {
import Button from '../Button/Button';
import FlyoutMenu, { FlyoutMenuDirection } from '../FlyoutMenu/FlyoutMenu';
import { handleSpecificKeyDown, useOnClickOutside } from '../../utils/componentUtilityFunctions';
import { Tooltip } from '../Tooltip';

import {
getIntervalValue,
Expand Down Expand Up @@ -1067,9 +1066,7 @@ const DateTimePicker = ({
})}
tabIndex={0}
>
<Tooltip triggerText={tooltipField} showIcon={false}>
{tooltipValue}
</Tooltip>
{tooltipField}
</div>
{invalidState && !hasIconOnly ? (
<p
Expand Down

0 comments on commit 18b9b71

Please sign in to comment.