Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
56d54f5
Typo : total_estimate instead of estimation
benchti Oct 2, 2017
ff86366
Merge pull request #28 from benchti/patch-1
kriskbx Oct 3, 2017
9540c03
Add recursive subgroup querying
kriskbx Oct 3, 2017
565ffc6
Release 1.6.11
kriskbx Oct 3, 2017
7855f6b
Add timeformat for different report parts
kriskbx Oct 3, 2017
0833099
Add shorthands for gtt-start command. #23
kriskbx Oct 3, 2017
8c835d7
Add description parsing #27
kriskbx Oct 3, 2017
7e26755
Remove FAQ part from readme
kriskbx Oct 3, 2017
b956d32
open config file in local EDITOR, if user is connected via SSH
zealot128 Oct 6, 2017
e7d8c01
Implemented resume command
zealot128 Oct 6, 2017
acade2b
made gtt-resume.js executable
zealot128 Oct 6, 2017
4d2dc51
Merge branch 'gtt-resume' of https://github.com/zealot128-os/gitlab-t…
kriskbx Oct 6, 2017
3f49200
Add project argument to resume command. Refactor resume method to be …
kriskbx Oct 6, 2017
9a55e39
Add promise rejection to resume method if there's no project set
kriskbx Oct 6, 2017
02d1502
Merge branch 'zealot128-os-gtt-resume'
kriskbx Oct 6, 2017
66fd3c1
Fix issues with description parsing
kriskbx Oct 10, 2017
ee35f64
Merge branch 'ssh-login-editor' of https://github.com/zealot128-os/gi…
kriskbx Oct 10, 2017
3b8a381
Add VISUAL and EDITOR env check to open command
kriskbx Oct 10, 2017
06de05b
Fix group searching by using the full path
kriskbx Oct 10, 2017
15a3d25
Add time format ceiling
kriskbx Oct 12, 2017
17bec44
Add rounded conditionals to time format
kriskbx Oct 14, 2017
3617da5
Fix missing time when there's no conditional in the ceiling function
kriskbx Oct 19, 2017
6cf60b8
Release 1.7.0
kriskbx Oct 19, 2017
4ed1d1c
Fix missing time_stats
kriskbx Oct 23, 2017
d525463
Fix missing time_stats
kriskbx Oct 23, 2017
c9fd848
Fix 'total_time_spent' undefined error
kriskbx Nov 12, 2017
1670b89
Release 1.7.1
kriskbx Nov 12, 2017
9c78e89
Fix configuration directory permissions
bobvandevijver Dec 12, 2017
16ee9cf
Merge pull request #37 from bobvandevijver/patch-1
kriskbx Dec 15, 2017
e5527de
Release 1.7.2
kriskbx Dec 15, 2017
ba2feef
Added line on default editor
bobvandevijver Dec 31, 2017
e68fb7a
Merge pull request #40 from bobvandevijver/patch-2
kriskbx Jan 11, 2018
2d64d5b
Add support for self-signed ssl certificates
kriskbx Jan 11, 2018
fce944a
Javascript parseInt also returns true if only the first character of …
spamsch Jan 12, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix missing time_stats
  • Loading branch information
kriskbx committed Oct 23, 2017
commit 4ed1d1caed3d64aa75df930f8b2c9930241e3723
2 changes: 1 addition & 1 deletion src/models/hasTimes.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class hasTimes extends Base {
// skip if description parsing is disabled
this.config.get('_skipDescriptionParsing') ||
// or the total time matches
totalTimeSpent === this.data.time_stats.total_time_spent ||
(this.data.time_stats && totalTimeSpent === this.data.time_stats.total_time_spent) ||
// or the user is filtered out
(this.config.get('user') && this.config.get('user') !== this.data.author.username) ||
// or the issue is not within the given time frame
Expand Down