mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Log Row Context: disable false a11y postive (#61312)
Chore: disable false a11y postive
This commit is contained in:
@@ -306,7 +306,9 @@ export const LogRowContext: React.FunctionComponent<LogRowContextProps> = ({
|
|||||||
return (
|
return (
|
||||||
<ClickOutsideWrapper onClick={() => onOutsideClick('close_outside_click')}>
|
<ClickOutsideWrapper onClick={() => onOutsideClick('close_outside_click')}>
|
||||||
{/* e.stopPropagation is necessary so the log details doesn't open when clicked on log line in context
|
{/* e.stopPropagation is necessary so the log details doesn't open when clicked on log line in context
|
||||||
* and/or when context log line is being highlighted */}
|
* and/or when context log line is being highlighted
|
||||||
|
*/}
|
||||||
|
{/* eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/no-static-element-interactions */}
|
||||||
<div onClick={(e) => e.stopPropagation()}>
|
<div onClick={(e) => e.stopPropagation()}>
|
||||||
{context.after && (
|
{context.after && (
|
||||||
<LogRowContextGroup
|
<LogRowContextGroup
|
||||||
|
|||||||
Reference in New Issue
Block a user