We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a25c3ab commit 54feedfCopy full SHA for 54feedf
packages/grafana-ui/src/components/Table/Table.tsx
@@ -63,8 +63,6 @@ export const Table = memo((props: Props) => {
63
const tableStyles = useTableStyles(theme, cellHeight);
64
const headerHeight = noHeader ? 0 : tableStyles.rowHeight;
65
const [footerItems, setFooterItems] = useState<FooterItem[] | undefined>(footerValues);
66
- const [expandedIndexes, setExpandedIndexes] = useState<Set<number>>(new Set());
67
- const prevExpandedIndexes = usePrevious(expandedIndexes);
68
69
const footerHeight = useMemo(() => {
70
const EXTENDED_ROW_HEIGHT = FOOTER_ROW_HEIGHT;
0 commit comments