Skip to content

Commit

Permalink
Fix updating the user preferences (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arciiix authored Jun 24, 2024
1 parent 86cfa08 commit fe94068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/app/pages/users/UserDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export const UserDialog = (props: UserDialogProps) => {
<hr />

{allProperties.map(x =>
<Forms.Text key={x.name} name={x.name} hints={x.editorDescription}
<Forms.Text key={x.name} name={`properties.${x.name}`} hints={x.editorDescription}
label={x.editorLabel || x.name} />,
)}
</>
Expand Down

0 comments on commit fe94068

Please sign in to comment.