@@ -19,7 +19,7 @@ | |||||
], | ], | ||||
"index_web_pages_for_search": 1, | "index_web_pages_for_search": 1, | ||||
"links": [], | "links": [], | ||||
"modified": "2021-04-15 14:24:23.168485", | |||||
"modified": "2021-04-15 16:12:31.455401", | |||||
"modified_by": "Administrator", | "modified_by": "Administrator", | ||||
"module": "Core", | "module": "Core", | ||||
"name": "User Group", | "name": "User Group", | ||||
@@ -36,6 +36,10 @@ | |||||
"role": "System Manager", | "role": "System Manager", | ||||
"share": 1, | "share": 1, | ||||
"write": 1 | "write": 1 | ||||
}, | |||||
{ | |||||
"read": 1, | |||||
"role": "All" | |||||
} | } | ||||
], | ], | ||||
"sort_field": "modified", | "sort_field": "modified", | ||||
@@ -1290,7 +1290,8 @@ Object.assign(frappe.utils, { | |||||
names_for_mentions.push({ | names_for_mentions.push({ | ||||
id: group, | id: group, | ||||
value: group, | value: group, | ||||
is_group: true | |||||
is_group: true, | |||||
link: frappe.utils.get_form_link('User Group', group) | |||||
}); | }); | ||||
}); | }); | ||||
@@ -120,6 +120,9 @@ | |||||
padding: 2px 5px; | padding: 2px 5px; | ||||
font-size: var(--text-sm); | font-size: var(--text-sm); | ||||
background-color: var(--user-mention-bg-color); | background-color: var(--user-mention-bg-color); | ||||
a[href] { | |||||
text-decoration: none; | |||||
} | |||||
} | } | ||||
// table | // table | ||||