migration to JS engine #1

Merged
akulij merged 131 commits from dev into main 2025-05-31 08:49:52 +00:00
Showing only changes of commit 2c5802eaeb - Show all commits

View File

@ -199,7 +199,6 @@ impl ResolveValue for ButtonDefinition {
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ButtonRaw {
name: ButtonName,
literal: Option<String>,
callback_name: String,
}
@ -209,7 +208,6 @@ impl ButtonRaw {
name: ButtonName::Literal {
literal: literal.clone(),
},
literal: Some(literal.clone()),
callback_name: literal,
}
}