Updated yarn.lock file with the latest versions.

This commit is contained in:
Akshay Joshi
2022-11-28 13:01:59 +05:30
parent 789c8e971f
commit bbaf2ac46d
4 changed files with 2712 additions and 3769 deletions

View File

@@ -306,8 +306,8 @@ function PlanSVG({planData, zoomFactor, fitZoomFactor, ...props}) {
].join(',');
let viewBox = [0, 0, 2 * ARROW_WIDTH, 2 * ARROW_HEIGHT].join(' ');
return(
<marker key={i} viewBox={viewBox} markerWidth={ARROW_WIDTH} markerHeight={ARROW_HEIGHT} orient="auto" refX="0" refY={ARROW_WIDTH / 4} id={arr_id} fill={theme.palette.text.primary}>
<polygon points={arrowPoints}></polygon>
<marker key={i} viewBox={viewBox} markerWidth={ARROW_WIDTH} markerHeight={ARROW_HEIGHT} orient="auto" refX="0" refY={ARROW_WIDTH / 4} id={arr_id}>
<polygon points={arrowPoints} fill={theme.palette.text.primary}></polygon>
</marker>
);
})}