From f1fe0e9827f713e7443767a4b73ab0b74a08c073 Mon Sep 17 00:00:00 2001 From: Reed Krantz Date: Mon, 12 Jan 2026 20:15:04 -0600 Subject: [PATCH] feat(components): make the quote a Textarea in EditQuote --- src/components/edit_quote.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/edit_quote.rs b/src/components/edit_quote.rs index 6ef8ec7..431178b 100644 --- a/src/components/edit_quote.rs +++ b/src/components/edit_quote.rs @@ -1,5 +1,6 @@ use crate::components::{ date_picker::{DatePicker, DatePickerInput}, + textarea::Textarea, Input, }; use dioxus::prelude::*; @@ -19,7 +20,7 @@ pub fn EditQuote() -> Element { }); rsx! { - Input { + Textarea { oninput: move |e: FormEvent| quote.set(e.value()), placeholder: "Enter the quote", value: quote,