mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 23:16:52 +08:00
fix(app): statusbarPadding config is a boolean
This commit is contained in:
@ -32,7 +32,7 @@ export class App {
|
||||
hostData() {
|
||||
const hybrid = isHybrid(this.win);
|
||||
const isStandalone = isStandaloneMode(this.win);
|
||||
const statusbarPadding = this.config.get('statusbarPadding', hybrid || isStandalone);
|
||||
const statusbarPadding = this.config.getBoolean('statusbarPadding', hybrid || isStandalone);
|
||||
|
||||
return {
|
||||
class: {
|
||||
|
||||
Reference in New Issue
Block a user