Skip to content

Commit 2343113

Browse files
Release v0.0.119
1 parent 0f19a8b commit 2343113

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Diff for: dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -49113,8 +49113,8 @@ var SchemaDesigner = class {
4911349113
throw new Error("Invalid format");
4911449114
}
4911549115
});
49116-
this.mxGraph.setSelectionCells(selectedCells);
4911749116
const fileContent = await fileContentPromise;
49117+
this.mxGraph.setSelectionCells(selectedCells);
4911849118
this._outlineContainer.style.visibility = "visible";
4911949119
return {
4912049120
fileContent,

Diff for: dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/src/ts/schemaDesigner/schemaDesigner.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -936,8 +936,8 @@ class SchemaDesigner {
936936
throw new Error('Invalid format');
937937
}
938938
});
939-
this.mxGraph.setSelectionCells(selectedCells);
940939
const fileContent = yield fileContentPromise;
940+
this.mxGraph.setSelectionCells(selectedCells);
941941
this._outlineContainer.style.visibility = "visible";
942942
return {
943943
fileContent,

Diff for: dist/tsconfig.tsbuildinfo

+1-1
Large diffs are not rendered by default.

Diff for: package.json

+1-1
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.118",
4+
"version": "0.0.119",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

Diff for: src/ts/schemaDesigner/schemaDesigner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1082,8 +1082,8 @@ export class SchemaDesigner {
10821082
throw new Error('Invalid format');
10831083
}
10841084
});
1085-
this.mxGraph.setSelectionCells(selectedCells);
10861085
const fileContent = await fileContentPromise;
1086+
this.mxGraph.setSelectionCells(selectedCells);
10871087
this._outlineContainer.style.visibility = "visible";
10881088
return {
10891089
fileContent,

0 commit comments

Comments
 (0)