Skip to content

Commit 23d1e64

Browse files
committed
fix calendar control on worklog list
1 parent 291a819 commit 23d1e64

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.8.1] - 2024-05-08
10+
### Fixed
11+
- Calendar control stopped working after introducing delete on worklog list
12+
913
## [0.8.0] - 2024-05-08
1014
### Added
1115
- `gojira worklogs` search bar - looks for a text or issue key if passed uppercased like `ISSUE-123`
@@ -109,7 +113,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
109113
### Added
110114
- Initial release of gojira
111115

112-
[Unreleased]: https://github.com/jzyinq/gojira/compare/0.8.0...master
116+
[Unreleased]: https://github.com/jzyinq/gojira/compare/0.8.1...master
117+
[0.8.1]: https://github.com/jzyinq/gojira/compare/0.8.0...0.8.1
113118
[0.8.0]: https://github.com/jzyinq/gojira/compare/0.7.0...0.8.0
114119
[0.7.0]: https://github.com/jzyinq/gojira/compare/0.6.0...0.7.0
115120
[0.6.0]: https://github.com/jzyinq/gojira/compare/0.5.4...0.6.0

gojira/dayview.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,9 @@ func (d *DayView) update() {
166166
app.ui.summary.update()
167167
}()
168168
default:
169+
169170
}
170-
return event
171+
return controlCalendar(event)
171172
})
172173
timeSpent := CalculateTimeSpent(getWorklogsFromWorklogIssues(logs))
173174
d.worklogStatus.SetText(

0 commit comments

Comments
 (0)