Skip to content

Commit 45c8855

Browse files
authored
Release 58 (#169)
1 parent 911884b commit 45c8855

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

dist/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93403,7 +93403,7 @@ azdataQueryPlan.prototype.init = function (queryPlanConfiguration) {
9340393403

9340493404
mxEvent.addListener(cellBodyContainer, 'keydown', (evt) => {
9340593405
if (this.showTooltipOnClick && this.showTooltip) {
93406-
if (evt.keyCode === 13 || evt.keyCode === 32) {
93406+
if (evt.keyCode === 13) {
9340793407
if (this.tooltipHandler.isVisible) {
9340893408
this.tooltipHandler.hide();
9340993409
} else {

dist/js/azdata/azdataQueryPlan.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ azdataQueryPlan.prototype.init = function (queryPlanConfiguration) {
459459

460460
mxEvent.addListener(cellBodyContainer, 'keydown', (evt) => {
461461
if (this.showTooltipOnClick && this.showTooltip) {
462-
if (evt.keyCode === 13 || evt.keyCode === 32) {
462+
if (evt.keyCode === 13) {
463463
if (this.tooltipHandler.isVisible) {
464464
this.tooltipHandler.hide();
465465
} else {

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

src/js/azdata/azdataQueryPlan.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ azdataQueryPlan.prototype.init = function (queryPlanConfiguration) {
459459

460460
mxEvent.addListener(cellBodyContainer, 'keydown', (evt) => {
461461
if (this.showTooltipOnClick && this.showTooltip) {
462-
if (evt.keyCode === 13 || evt.keyCode === 32) {
462+
if (evt.keyCode === 13) {
463463
if (this.tooltipHandler.isVisible) {
464464
this.tooltipHandler.hide();
465465
} else {

0 commit comments

Comments
 (0)