Skip to content

Commit

Permalink
Merge pull request #36 from sakazuki/issue-35
Browse files Browse the repository at this point in the history
fix #35
  • Loading branch information
sakazuki authored Feb 7, 2020
2 parents 8031bcd + 9560ad4 commit b0256bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@
1. Select Save Option (ex. Decide Later...)
1. Select Menu [Extras]-[Plugins]
1. Click [Add]
1. Input https://cdn.jsdelivr.net/gh/sakazuki/[email protected].0/dist/aws-step-functions.js
1. Input https://cdn.jsdelivr.net/gh/sakazuki/[email protected].1/dist/aws-step-functions.js
1. [Apply]
1. Reload the page

- You can run locally draw.io in the browser too. See details [draw.io Wiki page](https://github.com/jgraph/draw.io/wiki/Building)

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

## Useful TIPS
- Put a inputed AWSconfig into [Scratchpad].
Expand Down Expand Up @@ -85,6 +84,7 @@ node carlo.js
```

## Version history
- https://cdn.jsdelivr.net/gh/sakazuki/[email protected]/dist/aws-step-functions.js
- https://cdn.jsdelivr.net/gh/sakazuki/[email protected]/dist/aws-step-functions.js
- https://cdn.jsdelivr.net/gh/sakazuki/[email protected]/dist/aws-step-functions.js
- https://cdn.jsdelivr.net/gh/sakazuki/[email protected]/dist/aws-step-functions.js
Expand Down
2 changes: 1 addition & 1 deletion dist/aws-step-functions.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/states/edge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ CatchEdge.prototype.expJSON = function (cell, cells) {
ErrorEquals: errors,
Next: cells[cell.target.id].getAttribute("label")
};
if (cell.getAttribute("result_path"))
//@ts-ignore
data.ResultPath = awssfUtils.adjustJsonPath(cell.getAttribute("result_path"));
return data;
}else{
return {};
Expand Down

0 comments on commit b0256bb

Please sign in to comment.