Skip to content

Commit afa7491

Browse files
authored
Merge branch 'master' into issue-37
2 parents 265c19c + b0256bb commit afa7491

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
1. [Apply]
1919
1. Reload the page
2020

21-
- You can run locally draw.io in the browser too. See details [draw.io Wiki page](https://github.com/jgraph/draw.io/wiki/Building)
22-
2321
## Example
2422
1. Drag and drop a **Start** on a diagram
2523
1. Drag and drop a **Task** on a diagram
@@ -52,6 +50,7 @@
5250
## Feature
5351
- You can put states that are not connected.
5452
- You can use states that is normal shapes that draw.io provides.
53+
- You can run locally draw.io in the browser too. See details [draw.io Wiki page](https://github.com/jgraph/draw.io/wiki/Building)
5554

5655
## Useful TIPS
5756
- Put a inputed AWSconfig into [Scratchpad].

src/states/edge.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,9 @@ CatchEdge.prototype.expJSON = function (cell, cells) {
150150
ErrorEquals: errors,
151151
Next: cells[cell.target.id].getAttribute("label")
152152
};
153+
if (cell.getAttribute("result_path"))
154+
//@ts-ignore
155+
data.ResultPath = awssfUtils.adjustJsonPath(cell.getAttribute("result_path"));
153156
return data;
154157
}else{
155158
return {};

0 commit comments

Comments
 (0)