mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 01:15:44 +01:00
Feature/fix tabulator stops (#1831)
Add tab stops to action to increase accessibility of SCM-Manager with keyboard only usage. Also add a focus trap for modals to ensure the actions inside the modal can be used without losing the focus. Co-authored-by: René Pfeuffer <rene.pfeuffer@cloudogu.com>
This commit is contained in:
@@ -53,13 +53,13 @@ class Details extends React.Component<Props> {
|
||||
<tr>
|
||||
<th>{t("user.active")}</th>
|
||||
<td>
|
||||
<Checkbox checked={user.active} />
|
||||
<Checkbox checked={user.active} readOnly={true} />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{t("user.externalFlag")}</th>
|
||||
<td>
|
||||
<Checkbox checked={!!user.external} />
|
||||
<Checkbox checked={user.external} readOnly={true} />
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user