diff --git a/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx b/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx index 83c38c9a0bc..5d6b3edb8d3 100644 --- a/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx +++ b/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx @@ -24,7 +24,7 @@ export interface QueryOperationRowProps { collapsable?: boolean; disabled?: boolean; expanderMessages?: ExpanderMessages; - isFocused?: boolean; + highlight?: boolean; } export type QueryOperationRowRenderProp = ((props: QueryOperationRowRenderProps) => React.ReactNode) | React.ReactNode; @@ -49,7 +49,7 @@ export function QueryOperationRow({ index, id, expanderMessages, - isFocused = false, + highlight = false, }: QueryOperationRowProps) { const [isContentVisible, setIsContentVisible] = useState(isOpen !== undefined ? isOpen : true); const styles = useStyles2(getQueryOperationRowStyles); @@ -129,7 +129,7 @@ export function QueryOperationRow({ reportDragMousePosition={reportDragMousePosition} title={title} expanderMessages={expanderMessages} - isFocused={isFocused} + highlight={highlight} /> {isContentVisible &&