Skip to content

Commit f2afdb9

Browse files
💄feat(page): set default rows for post form to 10
1 parent a3e3794 commit f2afdb9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

resources/js/Pages/Post/PostForm.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export default function PostForm({ title, setTitle, content, setContent, handleS
2323
<textarea
2424
id="content"
2525
value={content}
26+
rows={10}
2627
onChange={(e) => setContent(e.target.value)}
2728
className="mt-1 block w-full rounded-md border-gray-600 bg-gray-700 text-white shadow-sm focus:border-blue-500 focus:ring focus:ring-blue-500 focus:ring-opacity-50 sm:text-sm"
2829
/>

0 commit comments

Comments
 (0)