Skip to content

Commit

Permalink
fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
andymchugh committed Feb 17, 2024
1 parent 5b47250 commit f65ec66
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file removed andrewbmchugh-flow-panel-1.1.0.unsigned.zip
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flow",
"version": "1.1.1",
"version": "1.1.2",
"description": "Svg flowchart visualization",
"scripts": {
"build": "webpack -c ./webpack.config.ts --env production",
Expand Down
2 changes: 1 addition & 1 deletion src/components/SvgUpdater.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function dimensionCoherence(doc: Document) {
return {
width: viewBox[2] - viewBox[0],
height: viewBox[3] - viewBox[1],
scaleDrive: (typeof width == 'string') && !width.includes('%'),
scaleDrive: (typeof width === 'string') && !width.includes('%'),
}
}
else {
Expand Down

0 comments on commit f65ec66

Please sign in to comment.