You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/api/config/js_kanban_cards_config.md
+5-6
Original file line number
Diff line number
Diff line change
@@ -45,11 +45,10 @@ cards?: [
45
45
cardId: string | number,
46
46
text?: string,
47
47
date?:Date,
48
-
},{...}
48
+
},{...}
49
49
],
50
50
[custom_key: string]?: any
51
-
},
52
-
{...} // other cards data
51
+
}, {...} // other cards data
53
52
];
54
53
~~~
55
54
@@ -125,7 +124,7 @@ const cards = [
125
124
cardId:1,
126
125
text:"Greetings, fellow colleagues. I would like to share my insights on this task. I reckon we should deal with at least half of the points in the plan without further delays. ",
127
126
date:newDate(),
128
-
}, {...}
127
+
}, {...}// other comments
129
128
],
130
129
priority:1,
131
130
// custom field to place the card into the "feature" row
@@ -135,7 +134,7 @@ const cards = [
135
134
// the columnKey config needs to be set to the "stage" value
136
135
stage:"backlog",
137
136
css:"red",
138
-
},{...} // other cards data
137
+
},{...} // other cards data
139
138
];
140
139
141
140
newkanban.Kanban("#root", {
@@ -151,4 +150,4 @@ new kanban.Kanban("#root", {
151
150
-[Working with data](../../../guides/working_with_data)
0 commit comments