Skip to content

Commit

Permalink
修复 域名监控/域名列表 自动更新字段排序无效问题
Browse files Browse the repository at this point in the history
  • Loading branch information
mouday committed Apr 3, 2024
1 parent c3d625a commit 3f28d8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion domain_admin/service/domain_info_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def get_ordering(order_prop='expire_days', order_type='ascending'):
else:
ordering.append(DomainInfoModel.is_expire_monitor.asc())

# order by is_auto_update
# fix: order by is_auto_update
elif order_prop == 'is_auto_update':
if order_type == 'descending':
ordering.append(DomainInfoModel.is_auto_update.desc())
Expand Down

0 comments on commit 3f28d8f

Please sign in to comment.