Fix display of database rows when password is not available

closes #4381
This commit is contained in:
DaneEveritt 2022-09-17 11:50:40 -07:00
parent bf2456d0fc
commit e040fd1ebd
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 7 additions and 10 deletions

View file

@ -34,6 +34,10 @@ export default ({ database, className }: Props) => {
const appendDatabase = ServerContext.useStoreActions((actions) => actions.databases.appendDatabase);
const removeDatabase = ServerContext.useStoreActions((actions) => actions.databases.removeDatabase);
const jdbcConnectionString = `jdbc:mysql://${database.username}${
database.password ? `:${database.password}` : ''
}@${database.connectionString}/${database.name}`;
const schema = object().shape({
confirm: string()
.required('The database name must be provided.')
@ -122,14 +126,8 @@ export default ({ database, className }: Props) => {
</Can>
<div css={tw`mt-6`}>
<Label>JDBC Connection String</Label>
<CopyOnClick
text={`jdbc:mysql://${database.username}:${database.password}@${database.connectionString}/${database.name}`}
>
<Input
type={'text'}
readOnly
value={`jdbc:mysql://${database.username}:${database.password}@${database.connectionString}/${database.name}`}
/>
<CopyOnClick text={jdbcConnectionString}>
<Input type={'text'} readOnly value={jdbcConnectionString} />
</CopyOnClick>
</div>
<div css={tw`mt-6 text-right`}>