@eclipse-glsp-examples/workflow-server-bundled 2.2.0-next.95 → 2.2.0-next.96

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp-examples/workflow-server-bundled",
3
- "version": "2.2.0-next.95+a733f72",
3
+ "version": "2.2.0-next.96+0fee91e",
4
4
  "description": "GLSP node server for the workflow example (bundled)",
5
5
  "keywords": [
6
6
  "eclipse",
@@ -49,5 +49,5 @@
49
49
  "publishConfig": {
50
50
  "access": "public"
51
51
  },
52
- "gitHead": "a733f72d957426f7eb20b73ce3bcda217feff80a"
52
+ "gitHead": "0fee91e42f4c63e80839df9d3560dca3959f2e31"
53
53
  }
@@ -1271,7 +1271,7 @@ let NodeDocumentationNavigationTargetProvider = class NodeDocumentationNavigatio
1271
1271
  getTargets(editorContext) {
1272
1272
  if (editorContext.selectedElementIds.length === 1) {
1273
1273
  const taskNode = this.modelState.index.findByClass(editorContext.selectedElementIds[0], graph_extension_1.TaskNode);
1274
- if (!taskNode || !(taskNode.id === 'task0')) {
1274
+ if (!taskNode || !taskNode.children.some(child => child instanceof server_1.GLabel && child.text === 'Push')) {
1275
1275
  return [];
1276
1276
  }
1277
1277
  const sourceUri = this.modelState.sourceUri;