Skip to content

Commit

Permalink
placeholder fix (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
mamorett authored Feb 20, 2024
1 parent 35dfdf0 commit ffb437b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ConfigEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -518,10 +518,10 @@ export class ConfigEditor extends PureComponent<Props, State> {
label="Fingerprint"
labelWidth={28}
tooltip="Fingerprint"
placeholder={options.secureJsonFields.fingerprint4 ? 'configured' : ''}
>
<Input
className="width-30"
placeholder={options.secureJsonFields.fingerprint4 ? 'configured' : ''}
onChange={onUpdateDatasourceSecureJsonDataOption(this.props, 'fingerprint4')}
/>
</InlineField>
Expand Down Expand Up @@ -592,10 +592,10 @@ export class ConfigEditor extends PureComponent<Props, State> {
label="User OCID"
labelWidth={28}
tooltip="User OCID"
placeholder={options.secureJsonFields.user5 ? 'configured' : ''}
>
<Input
className="width-30"
placeholder={options.secureJsonFields.user5 ? 'configured' : ''}
onChange={onUpdateDatasourceSecureJsonDataOption(this.props, 'user5')}
/>
</InlineField>
Expand Down

0 comments on commit ffb437b

Please sign in to comment.