Skip to content

Commit

Permalink
fixing referenceName
Browse files Browse the repository at this point in the history
  • Loading branch information
costero-e committed Nov 15, 2024
1 parent e2f1ade commit 45e7b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beacon/db/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ def apply_alphanumeric_filter(query: dict, filter: AlphanumericFilter, collectio
elif filter.value == 'Y':
dict_regex['$regex']='^NC_0000'+'24'
else:
dict_regex['$regex']='^NC_0000'+filter.value
dict_regex['$regex']='^NC_0000'+filter.value+'.'+'10:g'+'|'+'^NC_0000'+filter.value+'.'+'11:g'+'|'+'^NC_0000'+filter.value+'.'+'9:g'
elif '>' in filter.value:
dict_regex=filter.value
elif '.' in filter.value:
Expand Down

0 comments on commit 45e7b74

Please sign in to comment.