mirror of https://github.com/grafana/grafana.git
Remove unused `style` prop from FlameGraph (#110459)
* remove `style` prop * chore: linting
This commit is contained in:
parent
23fd69f572
commit
ba7603bd4b
|
@ -18,7 +18,6 @@
|
||||||
// THIS SOFTWARE.
|
// THIS SOFTWARE.
|
||||||
import { css, cx } from '@emotion/css';
|
import { css, cx } from '@emotion/css';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import * as React from 'react';
|
|
||||||
|
|
||||||
import { Icon } from '@grafana/ui';
|
import { Icon } from '@grafana/ui';
|
||||||
|
|
||||||
|
@ -37,7 +36,6 @@ type Props = {
|
||||||
matchedLabels?: Set<string>;
|
matchedLabels?: Set<string>;
|
||||||
setRangeMin: (range: number) => void;
|
setRangeMin: (range: number) => void;
|
||||||
setRangeMax: (range: number) => void;
|
setRangeMax: (range: number) => void;
|
||||||
style?: React.CSSProperties;
|
|
||||||
onItemFocused: (data: ClickedItemData) => void;
|
onItemFocused: (data: ClickedItemData) => void;
|
||||||
focusedItemData?: ClickedItemData;
|
focusedItemData?: ClickedItemData;
|
||||||
textAlign: TextAlign;
|
textAlign: TextAlign;
|
||||||
|
|
Loading…
Reference in New Issue