Commit 07cd1826 by Daniel Lee

datasource: fix merge conflict - restore dashboards tab

parent 7f3a3b9e
...@@ -114,7 +114,7 @@ export class DataSourceEditCtrl { ...@@ -114,7 +114,7 @@ export class DataSourceEditCtrl {
this.hasDashboards = false; this.hasDashboards = false;
return this.backendSrv.get('/api/plugins/' + this.current.type + '/settings').then(pluginInfo => { return this.backendSrv.get('/api/plugins/' + this.current.type + '/settings').then(pluginInfo => {
this.datasourceMeta = pluginInfo; this.datasourceMeta = pluginInfo;
this.hasDashboards = _.find(pluginInfo.includes, {type: 'dashboard'}); this.hasDashboards = _.find(pluginInfo.includes, {type: 'dashboard'}) !== undefined;
}); });
} }
......
...@@ -84,5 +84,8 @@ ...@@ -84,5 +84,8 @@
</form> </form>
</div> </div>
<div ng-if="ctrl.tabIndex === 1" class="tab-content">
<dashboard-import-list plugin="ctrl.datasourceMeta" datasource="ctrl.current"></dashboard-import-list>
</div>
</div> </div>
</div> </div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment