mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +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