Skip to content

Commit

Permalink
better names
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeparticle authored Sep 17, 2023
1 parent 82609cd commit 75b3319
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ui/src/pages/Converter/Base64/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ const Base64: React.FC = () => {
<PageGrid>
<Card>
<Form layout="vertical">
<Form.Item label="Text input">
<Form.Item label="Text">
<TextArea
value={input}
onChange={(currentValue) => {
setInput(currentValue.target.value);
onClick("encode", currentValue.target.value);
}}
placeholder="Input"
placeholder="Decoded text"
rows={10}
data-gramm={false}
allowClear
Expand All @@ -62,9 +62,9 @@ const Base64: React.FC = () => {
onClick("decode", value);
}}
rows={10}
placeholder="Result"
placeholder="Encoded text"
status={status}
label="Base64 output"
label="Base64"
/>

<Clipboard
Expand Down

0 comments on commit 75b3319

Please sign in to comment.