Skip to content

Commit

Permalink
修复 证书申请列表无法搜索的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mouday committed Oct 23, 2023
1 parent 2f51c32 commit 864ba34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion domain_admin/api/issue_certificate_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def get_certificate_list():
)

if keyword:
query.where(IssueCertificateModel.domain_raw.contains(keyword))
query = query.where(IssueCertificateModel.domain_raw.contains(keyword))

total = query.count()

Expand Down

0 comments on commit 864ba34

Please sign in to comment.