Merge pull request #2587 from ONLYOFFICE/feature/fix-bugs

Feature/fix bugs
This commit is contained in:
Maxim Kadushkin
2023-09-15 18:48:58 +03:00
committed by GitHub
3 changed files with 3 additions and 1 deletions

View File

@ -615,7 +615,7 @@
&.popover__titled {
.popover-arrow:after {
background: @brandColor;
background: @toolbar-background;
}
}

View File

@ -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);

View File

@ -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;