fix widget events with form event updates

This commit is contained in:
Evan Almloff 2023-06-30 12:46:47 -07:00
parent d99a5f3338
commit 81d32800f8
2 changed files with 1 additions and 2 deletions

View file

@ -60,7 +60,7 @@ impl EventData {
pub struct FormData {
pub value: String,
pub values: HashMap<String, String>,
pub values: HashMap<String, Vec<String>>,
pub files: Option<Files>,
}

View file

@ -20,7 +20,6 @@ use std::{
};
use std::{rc::Rc, sync::RwLock};
use style_attributes::StyleModifier;
use taffy::Taffy;
pub use taffy::{geometry::Point, prelude::*};
use tokio::select;
use tui::{backend::CrosstermBackend, layout::Rect, Terminal};