fixes #1762
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
data = data.slice(0, 10);
|
||||
resp($.map(data, function(tag) {
|
||||
return {
|
||||
label: tag.name,
|
||||
label: tag.name.replace(/_/g, " "),
|
||||
value: tag.name
|
||||
};
|
||||
}));
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
data = data.slice(0, 10);
|
||||
resp($.map(data, function(tag) {
|
||||
return {
|
||||
label: tag.name,
|
||||
label: tag.name.replace(/_/g, " "),
|
||||
value: tag.name
|
||||
};
|
||||
}));
|
||||
|
||||
Reference in New Issue
Block a user