File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ def table_to_var(table):
200
200
grist_post ('tables/Issues/data/delete' , [r ['id' ] for r in grist_get ('tables/Issues/records' )])
201
201
grist_post ('tables/IssueLabels/data/delete' , [r ['id' ] for r in grist_get ('tables/IssueLabels/records' )])
202
202
grist_post ('tables/IssueAssignees/data/delete' , [r ['id' ] for r in grist_get ('tables/IssueAssignees/records' )])
203
- for subissues in make_chunks (issues , 10 ):
203
+ for subissues in make_chunks (issues , 100 ):
204
204
grist_post ('tables/Issues/records' , {'records' : [{'fields' : filter_columns (issue )} for issue in subissues ]})
205
205
issue_label_records = [
206
206
{'fields' : {'issue' : issue ['id' ], 'label' : label }} for issue in subissues for label in issue ['labels' ]
You can’t perform that action at this time.
0 commit comments