Merge pull request #11396 from grafana/ie11_search_and_popup

fixed alignment in search + fixed issue ie popup
This commit is contained in:
Daniel Lee
2018-04-03 15:06:08 +02:00
committed by GitHub
2 changed files with 2 additions and 3 deletions

View File

@@ -35,12 +35,12 @@ export class Tracker {
$window.onbeforeunload = () => {
if (this.ignoreChanges()) {
return null;
return undefined;
}
if (this.hasChanges()) {
return 'There are unsaved changes to this dashboard';
}
return null;
return undefined;
};
scope.$on('$locationChangeStart', (event, next) => {