diff --git a/backend/pkg/tags/tags.go b/backend/pkg/tags/tags.go index ace575733..91c157aac 100644 --- a/backend/pkg/tags/tags.go +++ b/backend/pkg/tags/tags.go @@ -59,6 +59,9 @@ func (t *tagsImpl) Get(projectID uint32) ([]Tag, error) { IgnoreDeadClick: ignoreDeadClick, }) } + if tags == nil { + return []Tag{}, nil + } return tags, nil }