mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 20:47:32 +00:00
fix(console): add state filter to org table, filter context (#5650)
* fix: add state filter to org table, filter context --------- Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
This commit is contained in:
@@ -221,7 +221,7 @@ func NewOrgNameSearchQuery(method TextComparison, value string) (SearchQuery, er
|
||||
return NewTextQuery(OrgColumnName, value, method)
|
||||
}
|
||||
|
||||
func NewOrgStateSearchQuery(value int32) (SearchQuery, error) {
|
||||
func NewOrgStateSearchQuery(value domain_pkg.OrgState) (SearchQuery, error) {
|
||||
return NewNumberQuery(OrgColumnState, value, NumberEquals)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user