Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,13 @@ export const EnvironmentIndicator: React.FC<EnvironmentIndicatorProps> = ({

return (
<EuiToolTip content={tooltipContent}>
<EuiBadge color={badgeColor} css={badgeStyles} iconType={iconType} iconSide="left">
<EuiBadge
color={badgeColor}
css={badgeStyles}
iconType={iconType}
iconSide="left"
tabIndex={0}
>
{displayText}
</EuiBadge>
</EuiToolTip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export const FrameJankIndicator: React.FC = () => {

return (
<EuiToolTip content={tooltipContent}>
<div css={getContainerStyles(euiTheme)}>
<div css={getContainerStyles(euiTheme)} tabIndex={0}>
<EuiBadge color={'default'} css={getBadgeStyles()}>
Jank {perfInfo ? `${perfInfo.jankPercentage}%` : '-%'}
</EuiBadge>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const MemoryUsageIndicator: React.FC = () => {

return (
<EuiToolTip content={tooltipContent}>
<EuiBadge color="#0B1628" css={badgeStyles}>
<EuiBadge color="#0B1628" css={badgeStyles} tabIndex={0}>
{displayText}
</EuiBadge>
</EuiToolTip>
Expand Down Expand Up @@ -77,6 +77,7 @@ export const MemoryUsageIndicator: React.FC = () => {
css={badgeStyles}
iconType={memoryInfo.leak ? 'warningFill' : undefined}
iconSide={'right'}
tabIndex={0}
>
{displayText}
</EuiBadge>
Expand Down
Loading