fix: field values request fails (#573)

Former-commit-id: 63a966c526
This commit is contained in:
Hayden 2023-10-06 17:10:44 -05:00 committed by GitHub
parent 6ed1893bed
commit ce16b37b97

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)
} }