Skip to content

Commit

Permalink
fix: remove facet from model
Browse files Browse the repository at this point in the history
Closes: #25
  • Loading branch information
b1rger committed Feb 21, 2024
1 parent 67a485d commit 7af12ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion viecpro_typesense/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def shared_fields(m): return {
"end_date": WrittenDateField("end_date_written"),
"start": DateObjectDateField("start_date"),
"end": DateObjectDateField("end_date"),
"model": StaticField(value=m.__name__, options=O(facet=True)),
"model": StaticField(value=m.__name__, options=O(facet=False)),
}


Expand Down

0 comments on commit 7af12ae

Please sign in to comment.