mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Fixed label for sharing notification to be clickable
Fixed the sharing notification checkbox label in the file sharing dropdown, which makes it possible to click on the label directly.
This commit is contained in:
parent
27579f36f6
commit
68fbd7b922
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@ OC.Share={
|
|||
if (mailSend === '1') {
|
||||
checked = 'checked';
|
||||
}
|
||||
html += '<input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>';
|
||||
html += '<label><input type="checkbox" name="mailNotification" class="mailNotification" ' + checked + ' />'+t('core', 'notify user by email')+'</label>';
|
||||
}
|
||||
if (possiblePermissions & OC.PERMISSION_CREATE || possiblePermissions & OC.PERMISSION_UPDATE || possiblePermissions & OC.PERMISSION_DELETE) {
|
||||
if (editChecked == '') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue