Skip to content

Commit b0256bb

Browse files
authored
Merge pull request #36 from sakazuki/issue-35
fix #35
2 parents 8031bcd + 9560ad4 commit b0256bb

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@
1414
1. Select Save Option (ex. Decide Later...)
1515
1. Select Menu [Extras]-[Plugins]
1616
1. Click [Add]
17-
1. Input https://cdn.jsdelivr.net/gh/sakazuki/step-functions-draw.io@0.6.0/dist/aws-step-functions.js
17+
1. Input https://cdn.jsdelivr.net/gh/sakazuki/step-functions-draw.io@0.6.1/dist/aws-step-functions.js
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].
@@ -85,6 +84,7 @@ node carlo.js
8584
```
8685

8786
## Version history
87+
- https://cdn.jsdelivr.net/gh/sakazuki/step-functions-draw.io@0.6.1/dist/aws-step-functions.js
8888
- https://cdn.jsdelivr.net/gh/sakazuki/step-functions-draw.io@0.6.0/dist/aws-step-functions.js
8989
- https://cdn.jsdelivr.net/gh/sakazuki/step-functions-draw.io@0.5.1/dist/aws-step-functions.js
9090
- https://cdn.jsdelivr.net/gh/sakazuki/step-functions-draw.io@0.5.0/dist/aws-step-functions.js

dist/aws-step-functions.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)