Skip to content

Commit

Permalink
fix for issues #61 and #62 (#63)
Browse files Browse the repository at this point in the history
* fix for issues #61 and #62

* Update CHANGELOG.md

Co-authored-by: stas-fomenko <36419533+stas-fomenko@users.noreply.github.com>
  • Loading branch information
kirill-levitskiy and stas-fomenko authored Apr 22, 2020
1 parent 1e74980 commit b56737a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Add "Write CSV attachment from Array" action
* Add "Write CSV attachment from JSON" action
* Update sailor version to 2.6.5
* Help links added

## 2.0.2 (December 24, 2019)

Expand Down
16 changes: 7 additions & 9 deletions component.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"title": "Read CSV file from URL",
"help": {
"description": "Fetch a CSV file from a given URL and store it in the attachment storage.",
"link": "/components/csv/index.html#read-csv-file-from-url"
"link": "/components/csv/triggers#read-csv-file-from-url"
},
"type": "polling",
"fields": {
Expand All @@ -35,7 +35,7 @@
"title": "Read CSV attachment",
"help": {
"description": "Read a CSV attachment of an incoming message.",
"link": "/components/csv/index.html#read-csv-attachment"
"link": "/components/csv/actions#read-csv-attachment"
},
"fields": {
"emitAll": {
Expand All @@ -56,7 +56,7 @@
"title": "Write CSV attachment",
"help": {
"description": "Multiple incoming events can be combined into one CSV file with the write CSV action.",
"link": "/components/csv/index.html#write-csv-attachment"
"link": "/components/csv/actions#write-csv-attachment"
},
"fields": {
"includeHeaders": {
Expand Down Expand Up @@ -87,12 +87,12 @@
"title": "Write CSV attachment from JSON Object",
"help": {
"description": "Multiple incoming events can be combined into one CSV file with the write CSV action.",
"link": "/components/csv/index.html#write-csv-attachment-from-json"
"link": "/components/csv/actions#write-csv-attachment-from-json-object"
},
"fields": {
"includeHeaders": {
"label": "Include Headers",
"required": true,
"required": false,
"viewClass": "SelectView",
"description": "Default Yes",
"model": {
Expand All @@ -105,7 +105,6 @@
"label": "Separators",
"required": true,
"viewClass": "SelectView",
"description": "Default Yes",
"model": {
"comma": "Comma (,)",
"semicolon": "Semicolon (;)",
Expand All @@ -128,12 +127,12 @@
"title": "Write CSV attachment from JSON Array",
"help": {
"description": "Incoming array can be converted into one CSV file with the write CSV action.",
"link": "/components/csv/index.html#write-csv-attachment-from-array"
"link": "/components/csv/actions#write-csv-attachment-from-json-array"
},
"fields": {
"includeHeaders": {
"label": "Include Headers",
"required": true,
"required": false,
"viewClass": "SelectView",
"description": "Default Yes",
"model": {
Expand All @@ -146,7 +145,6 @@
"label": "Separators",
"required": true,
"viewClass": "SelectView",
"description": "Default Yes",
"model": {
"comma": "Comma (,)",
"semicolon": "Semicolon (;)",
Expand Down

0 comments on commit b56737a

Please sign in to comment.