Allow any of the panes params to be blank

This commit is contained in:
Carlos de Paula 2025-11-10 15:24:18 -03:00
parent f5be07823d
commit 03b3edf384

View file

@ -42,8 +42,11 @@ pub struct App {
#[derive(Deserialize, DeserializeOver2)]
pub struct AppPanes {
#[serde(default)]
pub parent: String,
#[serde(default)]
pub current: String,
#[serde(default)]
pub preview: String,
}