Skip to content

Commit e6652dd

Browse files
Release v0.0.79
1 parent 03d666c commit e6652dd

6 files changed

Lines changed: 6 additions & 7 deletions

File tree

dist/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43427,7 +43427,6 @@ var SchemaDesignerEntity = class {
4342743427
}
4342843428
this.editor = true;
4342943429
this._schemaDesigner.currentCellUnderEdit = state;
43430-
this._schemaDesigner.scrollToCell(state.cell);
4343143430
const relationships = this._schemaDesigner.getRelationships(state);
4343243431
const { editedEntity, editedOutgoingEdges } = await this._config.editEntity(state.cell, state.x, state.y, this._graph.view.scale, relationships.incoming, relationships.outgoing, this._schemaDesigner.schema);
4343343432
state.cell.value = editedEntity;

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/schemaDesignerEntity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class SchemaDesignerEntity {
6262
}
6363
this.editor = true;
6464
this._schemaDesigner.currentCellUnderEdit = state;
65-
this._schemaDesigner.scrollToCell(state.cell);
65+
// this._schemaDesigner.scrollToCell(state.cell);
6666
const relationships = this._schemaDesigner.getRelationships(state);
6767
const { editedEntity, editedOutgoingEdges } = yield this._config.editEntity(state.cell, state.x, state.y, this._graph.view.scale, relationships.incoming, relationships.outgoing, this._schemaDesigner.schema);
6868
state.cell.value = editedEntity;

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

src/ts/schemaDesigner/schemaDesignerEntity.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class SchemaDesignerEntity implements IEntity {
5757
}
5858
this.editor = true;
5959
this._schemaDesigner.currentCellUnderEdit = state;
60-
this._schemaDesigner.scrollToCell(state.cell);
60+
// this._schemaDesigner.scrollToCell(state.cell);
6161
const relationships = this._schemaDesigner.getRelationships(state);
6262
const { editedEntity, editedOutgoingEdges } = await this._config.editEntity(state.cell, state.x, state.y, this._graph.view.scale, relationships.incoming, relationships.outgoing, this._schemaDesigner.schema);
6363
state.cell.value = editedEntity;

0 commit comments

Comments
 (0)