Commit d4be953d by Patrick O'Carroll

fixed alignment in search + fixed issue ie popup

parent e622d558
...@@ -35,12 +35,12 @@ export class Tracker { ...@@ -35,12 +35,12 @@ export class Tracker {
$window.onbeforeunload = () => { $window.onbeforeunload = () => {
if (this.ignoreChanges()) { if (this.ignoreChanges()) {
return null; return undefined;
} }
if (this.hasChanges()) { if (this.hasChanges()) {
return 'There are unsaved changes to this dashboard'; return 'There are unsaved changes to this dashboard';
} }
return null; return undefined;
}; };
scope.$on('$locationChangeStart', (event, next) => { scope.$on('$locationChangeStart', (event, next) => {
......
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
//padding: 0.5rem 1.5rem 0.5rem 0; //padding: 0.5rem 1.5rem 0.5rem 0;
padding: 1rem 1rem 0.75rem 1rem; padding: 1rem 1rem 0.75rem 1rem;
height: 51px; height: 51px;
line-height: 51px;
box-sizing: border-box; box-sizing: border-box;
outline: none; outline: none;
background: $side-menu-bg; background: $side-menu-bg;
......
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