Skip to content

Commit

Permalink
fix #3428 UI: Upppercase encode
Browse files Browse the repository at this point in the history
  • Loading branch information
zxdong262 committed May 18, 2024
1 parent 09d31f9 commit 4146d2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/components/bookmark-form/form-ssh-common.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export default function renderCommon (props) {
value={k}
key={k}
>
{k}
{k.toUpperCase()}
</Option>
)
})
Expand Down
2 changes: 1 addition & 1 deletion src/client/components/footer/footer-entry.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default class SystemMenu extends Component {
encodes.map(k => {
return (
<Option key={k} value={k}>
{k}
{k.toUpperCase()}
</Option>
)
})
Expand Down

0 comments on commit 4146d2f

Please sign in to comment.