[SSE mobile] Fix Bug 59965
This commit is contained in:
parent
3422e014d1
commit
51f0bfa089
|
@ -516,6 +516,9 @@ class MainController extends Component {
|
||||||
storeSpreadsheetInfo.changeTitle(meta.title);
|
storeSpreadsheetInfo.changeTitle(meta.title);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const storeAppOptions = this.props.storeAppOptions;
|
||||||
|
this.api.asc_setFilteringMode && this.api.asc_setFilteringMode(storeAppOptions.canModifyFilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
onEntriesListMenu(validation, textArr, addArr) {
|
onEntriesListMenu(validation, textArr, addArr) {
|
||||||
|
|
|
@ -80,6 +80,7 @@ export class storeAppOptions {
|
||||||
permissions.edit = false;
|
permissions.edit = false;
|
||||||
this.canBranding = params.asc_getCustomization();
|
this.canBranding = params.asc_getCustomization();
|
||||||
this.canBrandingExt = params.asc_getCanBranding() && (typeof this.customization == 'object');
|
this.canBrandingExt = params.asc_getCanBranding() && (typeof this.customization == 'object');
|
||||||
|
this.canModifyFilter = permissions.modifyFilter !== false;
|
||||||
this.canAutosave = true;
|
this.canAutosave = true;
|
||||||
this.canAnalytics = params.asc_getIsAnalyticsEnable();
|
this.canAnalytics = params.asc_getIsAnalyticsEnable();
|
||||||
this.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
|
this.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit);
|
||||||
|
|
Loading…
Reference in a new issue