commit fc9acefcfc2b496543c9bdf2b89de78bf9265b94
parent badbf4f5fd86383e0a2a441ec0d2661d315ea12c
Author: Sebastian <sebasjm@gmail.com>
Date: Tue, 15 Apr 2025 14:03:02 -0300
fix #9738
Diffstat:
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/packages/aml-backoffice-ui/src/pages/decision/Justification.tsx b/packages/aml-backoffice-ui/src/pages/decision/Justification.tsx
@@ -97,17 +97,16 @@ const formDesign = (
hidden: !unknownAccount,
},
{
- type: "selectMultiple",
+ type: "selectOne",
choices: mi.map((m) => {
return {
value: m.id,
label: m.id,
};
}),
- unique: true,
id: "measures",
- label: i18n.str`Expiration measure`,
- help: i18n.str`Measures that the customer will need to satisfy after expiration.`,
+ label: i18n.str`Successor measure`,
+ help: i18n.str`Measure taken automatically upon expiration of the current decision.`,
},
],
});