Skip to content

Commit 90141e4

Browse files
committed
label "Made-up password"
1 parent edd10b9 commit 90141e4

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "electron-gp",
33
"private": true,
4-
"version": "0.2.20",
4+
"version": "0.2.21",
55
"type": "module",
66
"main": "dist-main/app.js",
77
"author": "traeop",

src/renderer/ui-business/AddResource/components/CheckboxGenerateKey.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ export const CheckboxGenerateKey = () => {
2727
{isCheck ? (
2828
renderGenerateCharacters
2929
) : (
30-
<TextField type="text" variant="outlined" name="password" fullWidth />
30+
<TextField
31+
label="Made-up password"
32+
type="text"
33+
variant="outlined"
34+
name="password"
35+
fullWidth
36+
/>
3137
)}
3238
</>
3339
);

src/renderer/ui-business/UpdateResource/components/CheckboxGenerateKey.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ export const CheckboxGenerateKey = () => {
2727
{isUpdateKey ? (
2828
renderGenerateCharacters
2929
) : (
30-
<TextField type="text" variant="outlined" name="password" fullWidth />
30+
<TextField
31+
label="Made-up password"
32+
type="text"
33+
variant="outlined"
34+
name="password"
35+
fullWidth
36+
/>
3137
)}
3238
</>
3339
);

0 commit comments

Comments
 (0)