File tree Expand file tree Collapse file tree 4 files changed +2
-22
lines changed
Expand file tree Collapse file tree 4 files changed +2
-22
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ export default function AxTree(props) {
275275 }
276276 }
277277 } else {
278- aspect = Math . max ( aspect , 0.2 ) ;
278+ aspect = Math . max ( aspect , 0.5 ) ;
279279 }
280280 const handleMouseAndClickOver = ( event ) : void => {
281281 const coords = localPoint ( event . target . ownerSVGElement , event ) ;
Original file line number Diff line number Diff line change @@ -457,7 +457,7 @@ export default function ComponentMap({
457457 }
458458 }
459459 } else {
460- aspect = Math . max ( aspect , 0.8 ) ;
460+ aspect = Math . max ( aspect , 1 ) ;
461461 }
462462
463463 // mousing controls & Tooltip display logic
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11//Import store from redux tool kit
22import { configureStore } from '@reduxjs/toolkit' ;
33import { mainSlice } from './slices/mainSlice' ;
4- import { axLegendSlice } from './slices/AxSlices/axLegendSlice' ;
54
65//Export Store
76export const store = configureStore ( {
87 reducer : {
98 main : mainSlice . reducer ,
10- axLegend : axLegendSlice . reducer ,
119 } ,
1210 middleware : ( getDefaultMiddleware ) => getDefaultMiddleware ( { serializableCheck : false } ) ,
1311} ) ;
You can’t perform that action at this time.
0 commit comments