further fleshing out of find display to support Prev and Next buttons

This commit is contained in:
2025-10-20 22:47:39 -06:00
parent e6f157c337
commit 7e3b1d535f
3 changed files with 45 additions and 6 deletions
+2 -1
View File
@@ -12,6 +12,7 @@ package ui
import (
"embed"
"errors"
"fmt"
"io"
"reflect"
@@ -90,7 +91,7 @@ func makeYearRange(a jet.Arguments) reflect.Value {
return reflect.ValueOf(err)
}
} else {
return reflect.ValueOf(fmt.Errorf("cannot locate year: marker in param"))
return reflect.ValueOf(errors.New("cannot locate year: marker in param"))
}
}