Skip to content

Commit 0f19a8b

Browse files
Release v0.0.118
1 parent 5819bbb commit 0f19a8b

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

dist/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -49114,9 +49114,10 @@ var SchemaDesigner = class {
4911449114
}
4911549115
});
4911649116
this.mxGraph.setSelectionCells(selectedCells);
49117+
const fileContent = await fileContentPromise;
4911749118
this._outlineContainer.style.visibility = "visible";
4911849119
return {
49119-
fileContent: await fileContentPromise,
49120+
fileContent,
4912049121
format,
4912149122
width,
4912249123
height

dist/index.js.map

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

dist/src/ts/schemaDesigner/schemaDesigner.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -937,9 +937,10 @@ class SchemaDesigner {
937937
}
938938
});
939939
this.mxGraph.setSelectionCells(selectedCells);
940+
const fileContent = yield fileContentPromise;
940941
this._outlineContainer.style.visibility = "visible";
941942
return {
942-
fileContent: yield fileContentPromise,
943+
fileContent,
943944
format: format,
944945
width: width,
945946
height: height

dist/tsconfig.tsbuildinfo

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

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

src/ts/schemaDesigner/schemaDesigner.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1083,9 +1083,10 @@ export class SchemaDesigner {
10831083
}
10841084
});
10851085
this.mxGraph.setSelectionCells(selectedCells);
1086+
const fileContent = await fileContentPromise;
10861087
this._outlineContainer.style.visibility = "visible";
10871088
return {
1088-
fileContent: await fileContentPromise,
1089+
fileContent,
10891090
format: format,
10901091
width: width,
10911092
height: height

0 commit comments

Comments
 (0)