diff --git a/static/js/pandora/usersDialog.js b/static/js/pandora/usersDialog.js index 68e8e273..faacd0df 100644 --- a/static/js/pandora/usersDialog.js +++ b/static/js/pandora/usersDialog.js @@ -129,9 +129,10 @@ pandora.ui.usersDialog = function() { { align: 'center', format: function(value, data) { + var userLevel = data.useragent.indexOf('Googlebot') > -1 + ? 'Robot' : value; return Ox.Theme.formatColorLevel( - data.useragent.indexOf('Googlebot') > -1 || data.username == 'rlx' - ? 5 : pandora.site.userLevels.indexOf(value), + userLevels.indexOf(userLevel), userLevels, [0, 300] );