mirror of
https://github.com/UA-Fediland/synapse-admin.git
synced 2024-11-22 06:21:28 +00:00
Bugfix removes the ability to click on individual connections.
If you click on a connection in UserEdit, you will get an empty page. This solves the problem.
This commit is contained in:
parent
5bdfb80db7
commit
168e249296
1 changed files with 6 additions and 1 deletions
|
@ -176,7 +176,12 @@ export const UserEdit = props => (
|
||||||
label="resources.connections.name"
|
label="resources.connections.name"
|
||||||
icon={<SettingsInputComponentIcon />}
|
icon={<SettingsInputComponentIcon />}
|
||||||
>
|
>
|
||||||
<ReferenceField reference="connections" source="id" addLabel={false}>
|
<ReferenceField
|
||||||
|
reference="connections"
|
||||||
|
source="id"
|
||||||
|
addLabel={false}
|
||||||
|
link={false}
|
||||||
|
>
|
||||||
<ArrayField
|
<ArrayField
|
||||||
source="devices[].sessions[0].connections"
|
source="devices[].sessions[0].connections"
|
||||||
label="resources.connections.name"
|
label="resources.connections.name"
|
||||||
|
|
Loading…
Reference in a new issue