1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-03 07:55:36 +00:00

[system admin] repo share: fix

This commit is contained in:
llj
2016-08-06 14:37:21 +08:00
committed by lian
parent 92df1ef8d2
commit a3b15e6f62
2 changed files with 3 additions and 16 deletions

View File

@@ -693,13 +693,7 @@ define([
// format selected item shown in the input
formatSelection: function(item) {
return _this.HTMLescape(item.name || item.id); // if no name, show the email, i.e., when directly input, show the email
},
createSearchChoice: function(term) {
return {
'id': $.trim(term)
};
return _this.HTMLescape(item.name);
},
escapeMarkup: function(m) { return m; }