diff --git a/public/app/core/controllers/inspect_ctrl.js b/public/app/core/controllers/inspect_ctrl.js index 0f8582ef5ce..39d550658f1 100644 --- a/public/app/core/controllers/inspect_ctrl.js +++ b/public/app/core/controllers/inspect_ctrl.js @@ -48,13 +48,13 @@ function (angular, _, $, coreModule) { } if (model.error.stack) { - $scope.editor.index = 2; + $scope.editor.index = 3; $scope.stack_trace = model.error.stack; $scope.message = model.error.message; } if (model.error.config && model.error.config.data) { - $scope.editor.index = 1; + $scope.editor.index = 2; if (_.isString(model.error.config.data)) { $scope.request_parameters = getParametersFromQueryString(model.error.config.data); diff --git a/public/app/features/dashboard/partials/inspector.html b/public/app/features/dashboard/partials/inspector.html index 37a1516c0b9..b30bce3c5fe 100644 --- a/public/app/features/dashboard/partials/inspector.html +++ b/public/app/features/dashboard/partials/inspector.html @@ -1,12 +1,12 @@