File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ const Collections = ({ collections }) => {
5959
6060 return (
6161 < div
62- className = 'h-[87vh] flex-auto overflow-scroll '
62+ className = 'h-[87vh] flex-auto overflow-auto '
6363 onClick = { ( event ) => {
6464 const clickFromElementDataSet = event . target . dataset ;
6565 const clickFrom = clickFromElementDataSet ?. clickFrom ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const Environments = ({ collections }) => {
1212
1313 return (
1414 < div
15- className = 'h-[87vh] flex-auto overflow-scroll '
15+ className = 'h-[87vh] flex-auto overflow-auto '
1616 onClick = { ( event ) => {
1717 const clickFromElementDataSet = event . target . dataset ;
1818 const clickFrom = clickFromElementDataSet ?. clickFrom ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import Content from 'components/molecules/sidebar/content';
77const SideBar = ( ) => {
88 const collections = useCollectionStore ( ( state ) => state . collections ) ;
99 return (
10- < div className = 'flex-auto overflow-scroll ' >
10+ < div className = 'flex-auto overflow-auto ' >
1111 < SideBarHeader />
1212 < > { collections . length != 0 ? < Content collections = { collections } /> : < Empty /> } </ >
1313 </ div >
You can’t perform that action at this time.
0 commit comments