From f745b920532f6f4c45f88d554701a6b398e8f49f Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Thu, 11 Dec 2014 11:55:29 -0800 Subject: [PATCH] fix(panel/hints): fix category name --- panel/hints/hints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel/hints/hints.js b/panel/hints/hints.js index 5fc6002..6529ced 100644 --- a/panel/hints/hints.js +++ b/panel/hints/hints.js @@ -11,7 +11,7 @@ function HintController($scope, inspectedApp) { $scope.groupedHints = {}; newHints.forEach(function (hint) { var moduleName = hint.module || 'Hints'; - var category = hint.category || (moduleName + ' Stuff'); + var category = hint.category || moduleName; if (!$scope.groupedHints[moduleName]) { $scope.groupedHints[moduleName] = {}; }