Enhance rule engine form to support currency formatting and suffix display

This commit is contained in:
Marshal
2026-06-30 15:18:30 +00:00
parent 708bd75d1f
commit 33d3aa9294
3 changed files with 22 additions and 2 deletions

View File

@@ -307,6 +307,14 @@ const RuleEngineFormDialog = ({
size="md"
radius="md"
styles={inputStyles}
rightSection={
field.suffix ? (
<Text size="sm" c="dimmed" fw={600} pr={4}>
{field.suffix}
</Text>
) : undefined
}
rightSectionWidth={field.suffix ? 52 : undefined}
/>
);
};