mirror of https://github.com/zulip/zulip.git
settings ui: Hide buttons to add/delete organization logo for nonadmins.
Users are unable to modify organization's logos, but disabled buttons for the same are being shown to the user on the organization settings page. This commit removes those buttons. The file realm-logo-widget.hbs renders those buttons only if the user is an admin and realm_logo.js has been updated to allow operations (like click) on the buttons only to admins.
This commit is contained in:
parent
ffc32ef795
commit
d91d32adfc
|
@ -13,6 +13,10 @@ exports.build_realm_logo_widget = function (upload_function, is_night) {
|
|||
return file_input_elem.expectOne();
|
||||
};
|
||||
|
||||
if (!page_params.is_admin) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (page_params.realm_logo_source === 'D') {
|
||||
delete_button_elem.hide();
|
||||
} else {
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
<input type="file" name="realm-logo-file-input"
|
||||
class="realm-logo-file-input notvisible" value="{{t 'Upload logo' }}"/>
|
||||
</div>
|
||||
{{#if is_admin}}
|
||||
<div class="inline-block avatar-controls">
|
||||
<div class="realm-logo-file-input-error alert text-error"></div>
|
||||
{{#if plan_includes_wide_organization_logo}}
|
||||
|
@ -16,4 +17,5 @@
|
|||
</button>
|
||||
{{/if}}
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue