Commit ce1bb66f authored by BaiJiangJie's avatar BaiJiangJie

[Update] 解决授权资产页面资产重复的问题

parent fc01b952
......@@ -103,7 +103,7 @@ class AssetPermission(BasePermission):
if pattern:
args.append(Q(nodes__key__regex=pattern))
args = reduce(lambda x, y: x | y, args)
assets = Asset.objects.filter(args)
assets = Asset.objects.filter(args).distinct()
return assets
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment