Skip to content

Commit 0aae146

Browse files
authored
fix: replace placeholder value (#364)
1 parent 6d6a5b8 commit 0aae146

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/ui/layouts/secrets/RegisterSecret/Register/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export const Register: React.FC<Props> = (state: any) => {
265265
required={true}
266266
label={'Secret name'}
267267
labelColor="rgba(66, 66, 64, 0.5)"
268-
placeholder={'Ex.John Doe'}
268+
placeholder={'unique_secret_name'}
269269
value={secretName}
270270
onChange={(val: string) => setSecretName(val)}
271271
/>

src/ui/layouts/secrets/SecretDetail/Configuration/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const Configuration: React.FC<{
7878
<FormTextField
7979
label={'Secret name'}
8080
labelColor="rgba(66, 66, 64, 0.5)"
81-
placeholder={'Ex.John Doe'}
81+
placeholder={'unique_secret_name'}
8282
value={secret?.name}
8383
disabled
8484
onChange={() => {}}

src/ui/layouts/secrets/UpdateSecret/UpdateConfig/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export const UpdateConfig: React.FC<{
269269
<FormTextField
270270
label={'Secret name'}
271271
labelColor="rgba(66, 66, 64, 0.5)"
272-
placeholder={'Ex.John Doe'}
272+
placeholder={'unique_secret_name'}
273273
value={secretName}
274274
// disabled
275275
onChange={(value: any) => {

0 commit comments

Comments
 (0)