aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/label.go
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/app/label.go')
-rw-r--r--dashboard/app/label.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dashboard/app/label.go b/dashboard/app/label.go
index cbff8c33e..807951f48 100644
--- a/dashboard/app/label.go
+++ b/dashboard/app/label.go
@@ -32,7 +32,7 @@ type subsetOf []string
type trueFalse struct{}
func makeLabelSet(c context.Context, ns string) *labelSet {
- ret := map[BugLabelType]interface{}{
+ ret := map[BugLabelType]any{
PriorityLabel: oneOf([]string{
string(LowPrioBug),
string(NormalPrioBug),
@@ -74,7 +74,7 @@ func makeLabelSet(c context.Context, ns string) *labelSet {
type labelSet struct {
c context.Context
ns string
- labels map[BugLabelType]interface{}
+ labels map[BugLabelType]any
}
func (s *labelSet) FindLabel(label BugLabelType) bool {