fix: field values request fails (#573)

This commit is contained in:
Hayden 2023-10-06 17:10:44 -05:00 committed by GitHub
parent db16d3fb23
commit 63a966c526
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,7 +231,7 @@ func (ctrl *V1Controller) HandleGetAllCustomFieldValues() errchain.HandlerFunc {
return ctrl.repo.Items.GetAllCustomFieldValues(auth, auth.GID, q.Field) return ctrl.repo.Items.GetAllCustomFieldValues(auth, auth.GID, q.Field)
} }
return adapters.Action(fn, http.StatusOK) return adapters.Query(fn, http.StatusOK)
} }