We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cd2697 commit 2d4071cCopy full SHA for 2d4071c
1 file changed
resources/scripts/components/server/databases/DatabaseRow.tsx
@@ -119,14 +119,14 @@ export default ({ database, className }: Props) => {
119
<Can action={'database.view_password'}>
120
<div css={tw`mt-6`}>
121
<Label>Password</Label>
122
- <CopyOnClick text={database.password}>
+ <CopyOnClick text={database.password} showInNotification={false}>
123
<Input type={'text'} readOnly value={database.password} />
124
</CopyOnClick>
125
</div>
126
</Can>
127
128
<Label>JDBC Connection String</Label>
129
- <CopyOnClick text={jdbcConnectionString}>
+ <CopyOnClick text={jdbcConnectionString} showInNotification={false}>
130
<Input type={'text'} readOnly value={jdbcConnectionString} />
131
132
0 commit comments