diff --git a/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx b/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx index da66a749ffe..149ffbabef1 100644 --- a/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx +++ b/packages/grafana-ui/src/components/PanelChrome/PanelChrome.tsx @@ -70,6 +70,10 @@ interface BaseProps { */ onMouseMove?: () => void; onMouseEnter?: () => void; + /** + * If true, the VizPanelMenu will always be visible in the panel header. Defaults to false. + */ + showMenuAlways?: boolean; } interface FixedDimensions extends BaseProps { @@ -87,10 +91,6 @@ interface AutoSize extends BaseProps { interface Collapsible { collapsible: boolean; collapsed?: boolean; - /** - * If true, the VizPanelMenu will always be visible in the panel header. Defaults to false. - */ - showMenuAlways?: boolean; /** * callback when collapsing or expanding the panel */