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