Skip to content

Commit b56737a

Browse files
fix for issues #61 and #62 (#63)
* fix for issues #61 and #62 * Update CHANGELOG.md Co-authored-by: stas-fomenko <36419533+stas-fomenko@users.noreply.github.com>
1 parent 1e74980 commit b56737a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Add "Write CSV attachment from Array" action
44
* Add "Write CSV attachment from JSON" action
55
* Update sailor version to 2.6.5
6+
* Help links added
67

78
## 2.0.2 (December 24, 2019)
89

component.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"title": "Read CSV file from URL",
1010
"help": {
1111
"description": "Fetch a CSV file from a given URL and store it in the attachment storage.",
12-
"link": "/components/csv/index.html#read-csv-file-from-url"
12+
"link": "/components/csv/triggers#read-csv-file-from-url"
1313
},
1414
"type": "polling",
1515
"fields": {
@@ -35,7 +35,7 @@
3535
"title": "Read CSV attachment",
3636
"help": {
3737
"description": "Read a CSV attachment of an incoming message.",
38-
"link": "/components/csv/index.html#read-csv-attachment"
38+
"link": "/components/csv/actions#read-csv-attachment"
3939
},
4040
"fields": {
4141
"emitAll": {
@@ -56,7 +56,7 @@
5656
"title": "Write CSV attachment",
5757
"help": {
5858
"description": "Multiple incoming events can be combined into one CSV file with the write CSV action.",
59-
"link": "/components/csv/index.html#write-csv-attachment"
59+
"link": "/components/csv/actions#write-csv-attachment"
6060
},
6161
"fields": {
6262
"includeHeaders": {
@@ -87,12 +87,12 @@
8787
"title": "Write CSV attachment from JSON Object",
8888
"help": {
8989
"description": "Multiple incoming events can be combined into one CSV file with the write CSV action.",
90-
"link": "/components/csv/index.html#write-csv-attachment-from-json"
90+
"link": "/components/csv/actions#write-csv-attachment-from-json-object"
9191
},
9292
"fields": {
9393
"includeHeaders": {
9494
"label": "Include Headers",
95-
"required": true,
95+
"required": false,
9696
"viewClass": "SelectView",
9797
"description": "Default Yes",
9898
"model": {
@@ -105,7 +105,6 @@
105105
"label": "Separators",
106106
"required": true,
107107
"viewClass": "SelectView",
108-
"description": "Default Yes",
109108
"model": {
110109
"comma": "Comma (,)",
111110
"semicolon": "Semicolon (;)",
@@ -128,12 +127,12 @@
128127
"title": "Write CSV attachment from JSON Array",
129128
"help": {
130129
"description": "Incoming array can be converted into one CSV file with the write CSV action.",
131-
"link": "/components/csv/index.html#write-csv-attachment-from-array"
130+
"link": "/components/csv/actions#write-csv-attachment-from-json-array"
132131
},
133132
"fields": {
134133
"includeHeaders": {
135134
"label": "Include Headers",
136-
"required": true,
135+
"required": false,
137136
"viewClass": "SelectView",
138137
"description": "Default Yes",
139138
"model": {
@@ -146,7 +145,6 @@
146145
"label": "Separators",
147146
"required": true,
148147
"viewClass": "SelectView",
149-
"description": "Default Yes",
150148
"model": {
151149
"comma": "Comma (,)",
152150
"semicolon": "Semicolon (;)",

0 commit comments

Comments
 (0)