File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
dashboard/ai-analytics/src/app/components Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ export default function BarList({
2828} : BarListProps ) {
2929 const [ isOpen , setIsOpen ] = useState ( false ) ;
3030 const [ searchQuery , setSearchQuery ] = useState ( '' ) ;
31+ // Used to maintain selection state for the barlist
3132 const [ selectedItems , setSelectedItems ] = useState < string [ ] > ( [ ] ) ;
3233
3334 const filteredItems = data . filter ( ( item ) =>
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import {
1313 TabPanels ,
1414 } from '@tremor/react' ;
1515
16- function classNames ( ...classes ) {
16+ function classNames ( ...classes : string [ ] ) {
1717 return classes . filter ( Boolean ) . join ( ' ' ) ;
1818 }
1919
@@ -343,7 +343,6 @@ import {
343343 showAnimation = { true }
344344 curveType = "monotone"
345345 stack = { isStacked }
346- rotateLabelX = { - 45 }
347346 />
348347 </ div >
349348 </ Card >
You can’t perform that action at this time.
0 commit comments