diff --git a/packages/grafana-ui/src/components/QueryEditor/EditorField.tsx b/packages/grafana-ui/src/components/QueryEditor/EditorField.tsx index 4c1052b077c..d25fe998a08 100644 --- a/packages/grafana-ui/src/components/QueryEditor/EditorField.tsx +++ b/packages/grafana-ui/src/components/QueryEditor/EditorField.tsx @@ -17,10 +17,11 @@ interface EditorFieldProps extends ComponentProps { width?: number | string; optional?: boolean; tooltip?: PopoverContent; + tooltipInteractive?: boolean; } export const EditorField: React.FC = (props) => { - const { label, optional, tooltip, children, width, ...fieldProps } = props; + const { label, optional, tooltip, tooltipInteractive, children, width, ...fieldProps } = props; const theme = useTheme2(); const styles = getStyles(theme, width); @@ -34,7 +35,7 @@ export const EditorField: React.FC = (props) => { {label} {optional && - optional} {tooltip && ( - + )}