(ThemeOptions) Fixed: Sidepanel settings are not resetting when layout changes

This commit is contained in:
Sercan Yemen 2018-07-17 13:02:11 +03:00
parent f8292af81e
commit 8454526ef5

View File

@ -194,6 +194,10 @@ export class FuseThemeOptionsComponent implements OnInit, OnDestroy
background: 'mat-fuse-dark-900-bg',
hidden : false,
position : 'below-static'
},
sidepanel: {
hidden : false,
position: 'right'
}
}
});
@ -223,6 +227,10 @@ export class FuseThemeOptionsComponent implements OnInit, OnDestroy
background: 'mat-fuse-dark-900-bg',
hidden : false,
position : 'below'
},
sidepanel: {
hidden : false,
position: 'right'
}
}
});
@ -252,6 +260,10 @@ export class FuseThemeOptionsComponent implements OnInit, OnDestroy
background: 'mat-fuse-dark-900-bg',
hidden : false,
position : 'above-static'
},
sidepanel: {
hidden : false,
position: 'right'
}
}
});
@ -281,6 +293,10 @@ export class FuseThemeOptionsComponent implements OnInit, OnDestroy
background: 'mat-fuse-dark-900-bg',
hidden : false,
position : 'above-fixed'
},
sidepanel: {
hidden : false,
position: 'right'
}
}
});