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):
200200grist_post ('tables/Issues/data/delete' , [r ['id' ] for r in grist_get ('tables/Issues/records' )])
201201grist_post ('tables/IssueLabels/data/delete' , [r ['id' ] for r in grist_get ('tables/IssueLabels/records' )])
202202grist_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 ):
204204 grist_post ('tables/Issues/records' , {'records' : [{'fields' : filter_columns (issue )} for issue in subissues ]})
205205 issue_label_records = [
206206 {'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