Skip to content

Commit

Permalink
Merge pull request UdaraJay#17 from CodeShady/main
Browse files Browse the repository at this point in the history
<textarea> Resizing Issue Fix
  • Loading branch information
UdaraJay committed Nov 12, 2023
2 parents 7f96762 + 088e519 commit 3190caa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/renderer/pages/Pile/Settings/Settings.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ input {
font-size: 14px;
line-height: 1.35;
min-height: 150px;
width: 100%; /* Ensure the width is 100%, no less, no more */
resize: none; /* Prevent resizing */
color: var(--primary);
background: var(--bg-tertiary);
border: none;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/pages/Pile/Settings/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function Settings() {
</label>
<textarea
className={styles.Textarea}
placeholder="Paste an OpenAI API key to enable AI reflections"
placeholder="Enter your own prompt for AI reflections"
value={prompt}
readOnly
/>
Expand Down

0 comments on commit 3190caa

Please sign in to comment.