Skip to content

Commit fe895a7

Browse files
Release v0.0.130
1 parent 2142c69 commit fe895a7

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

dist/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48463,6 +48463,8 @@ var SchemaDesigner = class {
4846348463
const edgeStateValue2 = this.edgeState.cell.value;
4846448464
if (self.isForeignKeyValid(source, target, edgeStateValue2.sourceRow, edgeStateValue2.targetRow)) {
4846548465
return null;
48466+
} else {
48467+
return "";
4846648468
}
4846748469
}
4846848470
if (this.edgeState === null) {

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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,6 +374,9 @@ class SchemaDesigner {
374374
if (self.isForeignKeyValid(source, target, edgeStateValue.sourceRow, edgeStateValue.targetRow)) {
375375
return null;
376376
}
377+
else {
378+
return "";
379+
}
377380
}
378381
if (this.edgeState === null) {
379382
return null;

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

src/ts/schemaDesigner/schemaDesigner.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,8 @@ export class SchemaDesigner {
403403
const edgeStateValue = this.edgeState.cell.value as EdgeCellValue;
404404
if (self.isForeignKeyValid(source, target, edgeStateValue.sourceRow, edgeStateValue.targetRow)) {
405405
return null!;
406+
} else {
407+
return "";
406408
}
407409
}
408410

0 commit comments

Comments
 (0)