Skip to content

Commit 57d54d3

Browse files
committed
587: Fix new users being displayed as inactive bug
1 parent a54e961 commit 57d54d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/client/src/pages/UserManagement/Components/Dialog/NewUserDialog.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export default function NewUserDialog(props) {
5050
username: data.username,
5151
full_name: data.name,
5252
role: data.role,
53-
password: data.password
53+
password: data.password,
54+
active: "Y",
5455
};
5556

5657
createUser(newUser, token)

0 commit comments

Comments
 (0)