diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index 98efaaeac9..68d322413e 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -11,6 +11,7 @@ function changeView(view) */ function renderUserAvatar(user, objectType, objectID, size) { + var title = user; var avatarSizeClass = 'avatar-' + (size || 'sm'); var $noPrivAndNoAssigned = $('
'); if(objectType == 'task') @@ -39,7 +40,7 @@ function renderUserAvatar(user, objectType, objectID, size) if(objectType == 'story' && !priv.canAssignStory) return $noPrivAvatar; if(objectType == 'bug' && !priv.canAssignBug) return $noPrivAvatar; - return $('').avatar({user: user}); + return $('').avatar({user: user}); } /**