From bf1e4cc91f467d703e2d02f1dafa170820f23e20 Mon Sep 17 00:00:00 2001 From: Ryan Blenis Date: Wed, 6 Nov 2019 04:49:36 -0500 Subject: [PATCH] Remove testing output --- meshuser.js | 2 +- views/default.handlebars | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/meshuser.js b/meshuser.js index a99dc670..ed011cbd 100644 --- a/meshuser.js +++ b/meshuser.js @@ -3134,7 +3134,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use //parent.parent.pluginHandler.addPlugin(command.url) parent.parent.pluginHandler.getPluginConfig(command.url) .then(parent.parent.pluginHandler.addPlugin) - .then(function(docs){ console.log('landed'); + .then(function(docs){ var targets = ['*', 'server-users']; parent.parent.DispatchEvent(targets, obj, { action: 'updatePluginList', list: docs }); }) diff --git a/views/default.handlebars b/views/default.handlebars index 6ca4b87b..542c01bf 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -9464,6 +9464,8 @@ var cant_action = []; if (p.hasAdminPanel == true) { p.nameHtml = `${p.name}`; + } else { + p.nameHtml = p.name; } p.statusText = statusMap[p.status].text; p.statusColor = statusMap[p.status].color;