Skip to content

Commit 9cf0836

Browse files
Release v0.0.135
1 parent a7390fb commit 9cf0836

File tree

6 files changed

+7
-13
lines changed

6 files changed

+7
-13
lines changed

dist/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48710,9 +48710,7 @@ var SchemaDesigner = class {
4871048710
this.mxGraph.view.rendering = false;
4871148711
while (true) {
4871248712
this.mxGraph.fit(null);
48713-
if (this.mxGraph.view.scale < 1) {
48714-
break;
48715-
}
48713+
this.mxGraph.fit(null);
4871648714
}
4871748715
this.mxGraph.view.rendering = true;
4871848716
this.autoLayout();

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/ts/schemaDesigner/schemaDesigner.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -590,9 +590,7 @@ class SchemaDesigner {
590590
this.mxGraph.view.rendering = false;
591591
while (true) {
592592
this.mxGraph.fit(null);
593-
if (this.mxGraph.view.scale < 1) {
594-
break;
595-
}
593+
this.mxGraph.fit(null);
596594
}
597595
this.mxGraph.view.rendering = true;
598596
this.autoLayout();

dist/tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "azdataGraph",
33
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
4-
"version": "0.0.134",
4+
"version": "0.0.135",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

src/ts/schemaDesigner/schemaDesigner.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -693,9 +693,7 @@ export class SchemaDesigner {
693693
this.mxGraph.view.rendering = false;
694694
while (true) {
695695
this.mxGraph.fit(null!);
696-
if (this.mxGraph.view.scale < 1) {
697-
break;
698-
}
696+
this.mxGraph.fit(null!);
699697
}
700698
this.mxGraph.view.rendering = true;
701699
this.autoLayout();

0 commit comments

Comments
 (0)