We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79672a8 commit 872c4faCopy full SHA for 872c4fa
frontend/packages/pydantic-forms/src/components/form/Footer.tsx
@@ -26,7 +26,7 @@ const Footer = ({
26
onClick={() => onPrevious?.()}
27
style={{
28
padding: '12px',
29
- backgroundColor: buttons?.previous?.color,
+ backgroundColor: previous?.color,
30
}}
31
>
32
{previous?.text ?? t('previous')}
@@ -48,7 +48,7 @@ const Footer = ({
48
const SubmitButton = () => (
49
<button
50
type="submit"
51
- style={{ padding: '12px', backgroundColor: buttons?.next?.color }}
+ style={{ padding: '12px', backgroundColor: next?.color }}
52
53
{next?.text ?? submitButtonLabel}
54
</button>
0 commit comments