mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
parent
f64ed6f62a
commit
4d7229ba17
2 changed files with 9 additions and 9 deletions
|
@ -26,7 +26,7 @@ app.directive('jsonWatchEdit', function ($injector) {
|
|||
const licenseService = $injector.get('xpackWatcherLicenseService');
|
||||
const kbnUrl = $injector.get('kbnUrl');
|
||||
const confirmModal = $injector.get('confirmModal');
|
||||
const dirtyPrompt = $injector.get('dirtyPrompt');
|
||||
// const dirtyPrompt = $injector.get('dirtyPrompt');
|
||||
|
||||
return {
|
||||
restrict: 'E',
|
||||
|
@ -37,7 +37,7 @@ app.directive('jsonWatchEdit', function ($injector) {
|
|||
bindToController: true,
|
||||
controllerAs: 'jsonWatchEdit',
|
||||
controller: class JsonWatchEditController extends InitAfterBindingsWorkaround {
|
||||
initAfterBindings($scope) {
|
||||
initAfterBindings() {
|
||||
this.notifier = new Notifier({ location: 'Watcher' });
|
||||
this.selectedTabId = 'edit-watch';
|
||||
this.simulateResults = null;
|
||||
|
@ -51,8 +51,8 @@ app.directive('jsonWatchEdit', function ($injector) {
|
|||
];
|
||||
this.breadcrumb = this.watch.displayName;
|
||||
|
||||
dirtyPrompt.register(() => !this.watch.isEqualTo(this.originalWatch));
|
||||
$scope.$on('$destroy', dirtyPrompt.deregister);
|
||||
// dirtyPrompt.register(() => !this.watch.isEqualTo(this.originalWatch));
|
||||
// $scope.$on('$destroy', dirtyPrompt.deregister);
|
||||
|
||||
this.onExecuteDetailsValid();
|
||||
}
|
||||
|
@ -174,7 +174,7 @@ app.directive('jsonWatchEdit', function ($injector) {
|
|||
}
|
||||
|
||||
onClose = () => {
|
||||
dirtyPrompt.deregister();
|
||||
// dirtyPrompt.deregister();
|
||||
kbnUrl.change('/management/elasticsearch/watcher/watches', {});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ app.directive('thresholdWatchEdit', function ($injector) {
|
|||
const actionDefaultsService = $injector.get('xpackWatcherActionDefaultsService');
|
||||
const kbnUrl = $injector.get('kbnUrl');
|
||||
const confirmModal = $injector.get('confirmModal');
|
||||
const dirtyPrompt = $injector.get('dirtyPrompt');
|
||||
// const dirtyPrompt = $injector.get('dirtyPrompt');
|
||||
const $interval = $injector.get('$interval');
|
||||
|
||||
return {
|
||||
|
@ -64,9 +64,9 @@ app.directive('thresholdWatchEdit', function ($injector) {
|
|||
];
|
||||
this.breadcrumb = this.watch.displayName;
|
||||
|
||||
dirtyPrompt.register(() => !this.watch.isEqualTo(this.originalWatch));
|
||||
// dirtyPrompt.register(() => !this.watch.isEqualTo(this.originalWatch));
|
||||
$scope.$on('$destroy', () => {
|
||||
dirtyPrompt.deregister();
|
||||
// dirtyPrompt.deregister();
|
||||
this.stopRefreshWatchVisualizationTimer();
|
||||
});
|
||||
|
||||
|
@ -152,7 +152,7 @@ app.directive('thresholdWatchEdit', function ($injector) {
|
|||
}
|
||||
|
||||
onClose = () => {
|
||||
dirtyPrompt.deregister();
|
||||
// dirtyPrompt.deregister();
|
||||
kbnUrl.change('/management/elasticsearch/watcher/watches', {});
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue