Skip to content

Commit 2142c69

Browse files
Release v0.0.129
1 parent 8b391de commit 2142c69

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48461,7 +48461,7 @@ var SchemaDesigner = class {
4846148461
this.mxGraph.connectionHandler.validateConnection = function(source, target) {
4846248462
if (this.edgeState && self.isForeignKeyValid !== void 0) {
4846348463
const edgeStateValue2 = this.edgeState.cell.value;
48464-
if (self.config.isForeignKeyValid(source, target, edgeStateValue2.sourceRow, edgeStateValue2.targetRow)) {
48464+
if (self.isForeignKeyValid(source, target, edgeStateValue2.sourceRow, edgeStateValue2.targetRow)) {
4846548465
return null;
4846648466
}
4846748467
}

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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ class SchemaDesigner {
371371
this.mxGraph.connectionHandler.validateConnection = function (source, target) {
372372
if (this.edgeState && self.isForeignKeyValid !== undefined) {
373373
const edgeStateValue = this.edgeState.cell.value;
374-
if (self.config.isForeignKeyValid(source, target, edgeStateValue.sourceRow, edgeStateValue.targetRow)) {
374+
if (self.isForeignKeyValid(source, target, edgeStateValue.sourceRow, edgeStateValue.targetRow)) {
375375
return null;
376376
}
377377
}

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

src/ts/schemaDesigner/schemaDesigner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ export class SchemaDesigner {
401401
(this.mxGraph.connectionHandler as extendedConnectionHandler).validateConnection = function (source, target) {
402402
if (this.edgeState && self.isForeignKeyValid !== undefined) {
403403
const edgeStateValue = this.edgeState.cell.value as EdgeCellValue;
404-
if (self.config.isForeignKeyValid(source, target, edgeStateValue.sourceRow, edgeStateValue.targetRow)) {
404+
if (self.isForeignKeyValid(source, target, edgeStateValue.sourceRow, edgeStateValue.targetRow)) {
405405
return null!;
406406
}
407407
}

0 commit comments

Comments
 (0)