File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
<name >Time Tracker</name >
6
6
<summary >Time Tracker App</summary >
7
7
<description ><![CDATA[ Time Tracker App]]> </description >
8
- <version >0.0.34 </version >
8
+ <version >0.0.35 </version >
9
9
<licence >agpl</licence >
10
10
<
author mail =
" [email protected] " >MTier Ltd.</
author >
11
11
<namespace >TimeTracker</namespace >
Original file line number Diff line number Diff line change 31
31
// extract clients in clientMap
32
32
var totalMinutes = 0 ;
33
33
for ( var x = 0 ; x < d . items . length ; x ++ ) {
34
- cid = d . items [ x ] . clientId ;
34
+ cid = d . items [ x ] . client ;
35
35
if ( cid == null ) {
36
36
cid = - 1 ;
37
37
}
74
74
75
75
for ( var x = 0 ; x < d . items . length ; x ++ ) {
76
76
77
- if ( d . items [ x ] . clientId === key || ( d . items [ x ] . clientId == null && key == - 1 ) ) {
77
+ if ( d . items [ x ] . client === key || ( d . items [ x ] . client == null && key == - 1 ) ) {
78
78
chartData . datasets [ 0 ] . data [ nindex ] = 0 ;
79
79
chartData . datasets [ 1 ] . data [ nindex ] = d . items [ x ] . totalDuration / 60.0 ;
80
80
You can’t perform that action at this time.
0 commit comments