Filtering on tags, Rounding on 'time'

This commit is contained in:
2025-12-04 14:35:16 -06:00
parent b30d663eb1
commit 729084ae74
5 changed files with 74 additions and 18 deletions

View File

@@ -1,6 +1,5 @@
/*
Copyright © 2022 Brian Buller <brian@bullercodeworks.com>
*/
package cmd
@@ -74,6 +73,7 @@ func opListTimers(cmd *cobra.Command, args []string) error {
}
filter := util.BuildFilterFromArgs(args)
list = list.Filter(filter)
list.Sort(timertxt.SortFinishDateAsc)
dayTotals := make(map[string]time.Duration)
for _, v := range list.GetTimerSlice() {