Skip to content

Commit

Permalink
fix: wrong filter naming after merge from develop
Browse files Browse the repository at this point in the history
  • Loading branch information
frascuchon committed Jul 9, 2024
1 parent 808c837 commit f241e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion argilla/src/argilla/records/_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _extract_filter_scope(field: str) -> ScopeModel:
field = field.strip()
if field == "status":
return RecordFilterScopeModel(property="status")
elif field == "responses.status":
elif field == "response.status":
return ResponseFilterScopeModel(property="status")
elif "metadata" in field:
_, md_property = field.split(".")
Expand Down

0 comments on commit f241e41

Please sign in to comment.