From 23b96814d05e0e04155de83ef06f1f7019ab15c8 Mon Sep 17 00:00:00 2001 From: inhji Date: Tue, 4 Apr 2023 15:17:16 +0200 Subject: [PATCH] set textarea rows for notes content to 15 --- lib/chiya_web/controllers/note_html/note_form.html.heex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chiya_web/controllers/note_html/note_form.html.heex b/lib/chiya_web/controllers/note_html/note_form.html.heex index a8bd7c3..cf04a0c 100644 --- a/lib/chiya_web/controllers/note_html/note_form.html.heex +++ b/lib/chiya_web/controllers/note_html/note_form.html.heex @@ -3,7 +3,7 @@ Oops, something went wrong! Please check the errors below. <.input field={f[:name]} type="text" label="Name" /> - <.input field={f[:content]} type="textarea" label="Content" /> + <.input field={f[:content]} type="textarea" label="Content" rows="15" /> <.input field={f[:slug]} type="text" label="Slug" /> <.input field={f[:published_at]} type="datetime-local" label="Published at" /> <.input