diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index 5a4933e84c..c48c0168b2 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -615,7 +615,7 @@ &.popover__titled { .popover-arrow:after { - background: @brandColor; + background: @toolbar-background; } } diff --git a/apps/presentationeditor/mobile/src/store/appOptions.js b/apps/presentationeditor/mobile/src/store/appOptions.js index d44b4cc237..8fb28b8e16 100644 --- a/apps/presentationeditor/mobile/src/store/appOptions.js +++ b/apps/presentationeditor/mobile/src/store/appOptions.js @@ -77,6 +77,7 @@ export class storeAppOptions { this.canAnalytics = params.asc_getIsAnalyticsEnable(); this.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit); this.isLightVersion = params.asc_getIsLight(); + this.buildVersion = params.asc_getBuildVersion(); this.canCoAuthoring = !this.isLightVersion; this.isOffline = Common.EditorApi.get().asc_isOffline(); this.isReviewOnly = (permissions.review === true) && (permissions.edit === false); diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index dda82e822a..0a71c471e1 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -89,6 +89,7 @@ export class storeAppOptions { this.canAnalytics = params.asc_getIsAnalyticsEnable(); this.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit); this.isLightVersion = params.asc_getIsLight(); + this.buildVersion = params.asc_getBuildVersion(); this.canCoAuthoring = !this.isLightVersion; this.isOffline = Common.EditorApi.get().asc_isOffline(); this.canRequestEditRights = this.config.canRequestEditRights;