File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 44 branches : [ "main" ]
55env :
66 upstream_version : v0.10.3
7- etke_version : etke7
7+ etke_version : etke8
88 bunny_version : v0.1.0
99 base_path : ./
1010permissions :
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ The following changes are already implemented:
3030* [ Fix user's display name in header on user's page] ( https://github.com/etkecc/synapse-admin/pull/9 )
3131* [ Fix footer overlapping content] ( https://github.com/Awesome-Technologies/synapse-admin/issues/574 )
3232* Switch from nginx to [ SWS] ( https://static-web-server.net/ ) for serving the app, reducing the size of the Docker image
33- by 340%
33+ * [ Fix redirect URL after user creation ] ( https://github.com/etkecc/synapse-admin/pull/16 )
3434
3535_ the list will be updated as new changes are added_
3636
Original file line number Diff line number Diff line change @@ -204,7 +204,9 @@ const UserEditActions = () => {
204204} ;
205205
206206export const UserCreate = ( props : CreateProps ) => (
207- < Create { ...props } >
207+ < Create { ...props } redirect = { ( resource , id , data ) => {
208+ return `users/${ id } ` ;
209+ } } >
208210 < SimpleForm >
209211 < TextInput source = "id" autoComplete = "off" validate = { validateUser } />
210212 < TextInput source = "displayname" validate = { maxLength ( 256 ) } />
You can’t perform that action at this time.
0 commit comments