File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ export class UserAdd extends Component {
300300 < StyledFormElement >
301301 < StyledLabel >
302302 < StyledInput
303- onClick = { this . updateForcePasswordChange . bind ( this ) }
303+ onChange = { this . updateForcePasswordChange . bind ( this ) }
304304 checked = { this . state . forcePasswordChange }
305305 disabled = { isLoading }
306306 type = 'checkbox'
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export function createDatabaseUser ({
2929 password,
3030 forcePasswordChange
3131} ) {
32- return `CALL dbms.security.createUser("${ username } ", "${ password } ", ${ forcePasswordChange } )`
32+ return `CALL dbms.security.createUser("${ username } ", "${ password } ", ${ ! ! forcePasswordChange } )`
3333}
3434export function deleteUser ( username ) {
3535 return `CALL dbms.security.deleteUser("${ username } ")`
You can’t perform that action at this time.
0 commit comments