Skip to content

Commit 43314c4

Browse files
committed
fix(time): fix scope time coverage
1 parent 8bde033 commit 43314c4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

chips.omp.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"{{ if lt .Ms 60000 }}p:c-exec-fast{{ end }}",
5959
"{{ if lt .Ms 3600000 }}p:c-exec-normal{{ end }}",
6060
"{{ if lt .Ms 10800000 }}p:c-exec-slow{{ end }}",
61-
"{{ if gt .Ms 10800001 }}p:c-exec-slower{{ end }}"
61+
"{{ if ge .Ms 10800000 }}p:c-exec-slower{{ end }}"
6262
],
6363
"foreground": "p:c-badge-text",
6464
"leading_diamond": "\uE0B6",
@@ -77,7 +77,7 @@
7777
"{{ if lt (.CummulativeTotal.Seconds | int64) 10800 }}p:c-wakatime-warm-up{{ end }}",
7878
"{{ if lt (.CummulativeTotal.Seconds | int64) 25200 }}p:c-wakatime-working{{ end }}",
7979
"{{ if lt (.CummulativeTotal.Seconds | int64) 28000 }}p:c-wakatime-quota{{ end }}",
80-
"{{ if gt (.CummulativeTotal.Seconds | int64) 28801 }}p:c-wakatime-overtime{{ end }}"
80+
"{{ if ge (.CummulativeTotal.Seconds | int64) 28800 }}p:c-wakatime-overtime{{ end }}"
8181
],
8282
"foreground": "p:c-badge-text",
8383
"leading_diamond": "\uE0B6",

0 commit comments

Comments
 (0)