mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
NavModel: Fixed page header ui tabs issues for some admin pages (#17444)
This commit is contained in:
@@ -32,7 +32,7 @@ export class AlertNotificationEditCtrl {
|
||||
private $templateCache: any,
|
||||
navModelSrv: NavModelSrv
|
||||
) {
|
||||
this.navModel = navModelSrv.getNav('alerting', 'channels');
|
||||
this.navModel = navModelSrv.getNav('alerting', 'channels', 0);
|
||||
this.isNew = !this.$routeParams.id;
|
||||
|
||||
this.getFrequencySuggestion = () => {
|
||||
|
||||
@@ -8,7 +8,7 @@ export class AlertNotificationsListCtrl {
|
||||
/** @ngInject */
|
||||
constructor(private backendSrv: BackendSrv, navModelSrv: NavModelSrv) {
|
||||
this.loadNotifications();
|
||||
this.navModel = navModelSrv.getNav('alerting', 'channels');
|
||||
this.navModel = navModelSrv.getNav('alerting', 'channels', 0);
|
||||
}
|
||||
|
||||
loadNotifications() {
|
||||
|
||||
Reference in New Issue
Block a user