From 24c02845a0e9e7bde38dacd84607de973ffec10f Mon Sep 17 00:00:00 2001 From: Alexis Paques Date: Wed, 6 Jul 2022 15:09:00 +0000 Subject: [PATCH] Allow select menu response for modals (#1986) --- src/model/application/component.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/model/application/component.rs b/src/model/application/component.rs index 44b9a7d54e5..e5788b1c2dc 100644 --- a/src/model/application/component.rs +++ b/src/model/application/component.rs @@ -152,6 +152,8 @@ pub struct SelectMenu { /// The options of this select menu. #[serde(default)] pub options: Vec, + /// The result location for modals + pub values: Vec, } /// A select menu component options.