From 94729745dcba058845cdd3152599bdfefd671e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 11 Apr 2016 18:54:00 -0400 Subject: [PATCH] change(apps): config tab is now default for app plugins, fixes #4573 --- public/app/features/plugins/plugin_edit_ctrl.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/features/plugins/plugin_edit_ctrl.ts b/public/app/features/plugins/plugin_edit_ctrl.ts index 7f3f6bff08f..5b3c552db6a 100644 --- a/public/app/features/plugins/plugin_edit_ctrl.ts +++ b/public/app/features/plugins/plugin_edit_ctrl.ts @@ -47,6 +47,7 @@ export class PluginEditCtrl { }); if (this.model.type === 'app') { + this.tabIndex = 1; this.tabs.push('Config'); this.hasDashboards = _.findWhere(result.includes, {type: 'dashboard'});