Skip to content

Commit 7ebe6eb

Browse files
Bump @grpc/grpc-js from 1.12.0 to 1.13.0 in the grpc group (#1872)
* Bump @grpc/grpc-js from 1.12.0 to 1.13.0 in the grpc group Bumps the grpc group with 1 update: [@grpc/grpc-js](https://github.com/grpc/grpc-node). Updates `@grpc/grpc-js` from 1.12.0 to 1.13.0 - [Release notes](https://github.com/grpc/grpc-node/releases) - [Commits](https://github.com/grpc/grpc-node/compare/@grpc/grpc-js@1.12.0...@grpc/grpc-js@1.13.0) --- updated-dependencies: - dependency-name: "@grpc/grpc-js" dependency-type: direct:production update-type: version-update:semver-minor dependency-group: grpc ... Signed-off-by: dependabot[bot] <support@github.com> * Remove "server.start()" * Try to fix balloon failing test --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Boulais <31805063+martinboulais@users.noreply.github.com>
1 parent df17c5a commit 7ebe6eb

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/public/components/common/popover/overflowBalloon.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ export const overflowBalloon = (content, options = null) => {
5252
if (previousTriggerNode) {
5353
const node = stretch ? previousTriggerNode.parentNode : previousTriggerNode;
5454

55-
node.removeEventListener('mouseenter', this.showPopover);
55+
node.removeEventListener('mouseover', this.showPopover);
5656
node.removeEventListener('mouseleave', this.hidePopover);
5757
}
5858

5959
if (newTriggerNode) {
6060
const node = stretch ? newTriggerNode.parentNode : newTriggerNode;
6161

62-
node.addEventListener('mouseenter', this.showPopover);
62+
node.addEventListener('mouseover', this.showPopover);
6363
node.addEventListener('mouseleave', this.hidePopover);
6464
}
6565
},

lib/server/GRPCServer.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ class GRPCServer {
7575
origin,
7676
grpc.ServerCredentials.createInsecure(),
7777
() => {
78-
this._server.start();
7978
resolve();
8079
},
8180
));

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"dependencies": {
2525
"@aliceo2/web-ui": "2.7.0",
26-
"@grpc/grpc-js": "1.12.0",
26+
"@grpc/grpc-js": "1.13.0",
2727
"@grpc/proto-loader": "0.7.0",
2828
"cls-hooked": "4.2.2",
2929
"d3": "7.8.5",

0 commit comments

Comments
 (0)