Commit aabcf7f3 authored by BaiJiangJie's avatar BaiJiangJie Committed by 老广

[Update] 授权列表下拉信息添加action字段 (#2618)

parent 33a00f04
...@@ -130,6 +130,9 @@ function format(d) { ...@@ -130,6 +130,9 @@ function format(d) {
if (d.system_users.length > 0) { if (d.system_users.length > 0) {
data += makeLabel(["{% trans 'System user' %}", d.system_users.join(", ")]) data += makeLabel(["{% trans 'System user' %}", d.system_users.join(", ")])
} }
if (d.actions.length > 0) {
data += makeLabel(["{% trans 'Action' %}", d.actions.join(", ")])
}
return data return data
} }
......
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