Skip to content

Commit

Permalink
Merge pull request #3197 from nextcloud/backport/3191/stable28
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Sep 10, 2024
2 parents 9b5ebde + d2d0bcf commit 52f4456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,15 @@ export class App extends Component<{}, AppState> implements OC.Plugin<OC.Search.
onChange={this.setQuota.bind(this, folder)}/>
</td>
<td className="acl">
<input id={`acl-${folder.id}`} type="checkbox" className="checkbox" checked={folder.acl} disabled={!App.supportACL()}
<input id={'acl-' + folder.id} type="checkbox" className="checkbox" checked={folder.acl} disabled={!App.supportACL()}
title={
App.supportACL()
? t('groupfolders', 'Advanced permissions allows setting permissions on a per-file basis but comes with a performance overhead')
: t('groupfolders', 'Advanced permissions are only supported with Nextcloud 16 and up')
}
onChange={(event) => this.setAcl(folder, event.target.checked)}
/>
<label htmlFor={`acl-${folder.id}`}></label>
<label htmlFor={'acl-' + folder.id}></label>
{folder.acl
&& <ManageAclSelect
folder={folder}
Expand Down

0 comments on commit 52f4456

Please sign in to comment.