FIX: user card can't expand when the username is number
This commit is contained in:
parent
b48f04e772
commit
489feac121
|
@ -33,7 +33,7 @@ export default ObjectController.extend({
|
|||
|
||||
show: function(username, target) {
|
||||
// XSS protection (should be encapsulated)
|
||||
username = username.replace(/[^A-Za-z0-9_]/g, "");
|
||||
username = username.toString().replace(/[^A-Za-z0-9_]/g, "");
|
||||
var url = "/users/" + username;
|
||||
|
||||
// Don't show on mobile
|
||||
|
|
Loading…
Reference in New Issue