File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Version 0.0.6
1010- Fix Bug that percentage done was not calculated correctly :issue: `5 `
1111- Syncing always set Task Type to Fixed Work but revert to original after sync :issue: `6 `
1212- Adding parameter ``--force-fixed-work `` that does not reset the Task Type after sync
13+ - Do not sync work with summary task :issue: `1 `
1314
1415Version 0.0.5
1516=============
Original file line number Diff line number Diff line change @@ -132,7 +132,8 @@ def update_task_with_issue_data(
132132 task .notes = issue .description
133133 if issue .due_date is not None :
134134 task .deadline = issue .due_date
135- task .work = int (issue .time_estimated )
135+ if not task .has_children :
136+ task .work = int (issue .time_estimated )
136137 # Update duration in case it seems to be default
137138 if task .duration == DEFAULT_DURATION and task .estimated :
138139 if task .work > 0 :
You can’t perform that action at this time.
0 commit comments