Disable the dirty prompt until #19594 is resolved (#19595)

This commit is contained in:
Chris Roberson 2018-06-01 08:58:43 -04:00 committed by GitHub
parent a801752e79
commit 9ce082b1f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View file

@ -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', {});
}
}

View file

@ -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', {});
}