Skip to content

Commit

Permalink
Changed links in welcome dialog: #237
Browse files Browse the repository at this point in the history
  • Loading branch information
GermanBluefox committed Jan 9, 2025
1 parent b09ebae commit 1e12c47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src-admin/src/components/WelcomeDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,9 @@ class WelcomeDialog extends React.Component<WelcomeDialogProps, WelcomeDialogSta
!!this.state.login &&
(!this.state.password || this.state.password !== this.state.passwordRepeat)
) {
this.setState({ notSavedConfirm: 'bridges' });
this.setState({ notSavedConfirm: 'controller' });
} else {
this.props.onClose(this.state.login, this.state.password, 'bridges');
this.props.onClose(this.state.login, this.state.password, 'controller');
}
}}
>
Expand All @@ -474,9 +474,9 @@ class WelcomeDialog extends React.Component<WelcomeDialogProps, WelcomeDialogSta
!!this.state.login &&
(!this.state.password || this.state.password !== this.state.passwordRepeat)
) {
this.setState({ notSavedConfirm: 'controller' });
this.setState({ notSavedConfirm: 'bridges' });
} else {
this.props.onClose(this.state.login, this.state.password, 'controller');
this.props.onClose(this.state.login, this.state.password, 'bridges');
}
}}
>
Expand Down

0 comments on commit 1e12c47

Please sign in to comment.