-
Previously it was possible by setting the uiSchema to: submitButton: {
'ui:options': {
title: 'Запустить',
button: {
style: 'width: 100%; margin-top: 1em; padding: 0.5rem;',
},
},
}, But in v2 this doesnt work |
Beta Was this translation helpful? Give feedback.
Answered by
x0k
May 21, 2025
Replies: 1 comment 2 replies
-
import { overrideByRecord } from "@sjsf/form/lib/resolver";
import { translation as baseTranslation } from '@sjsf/form/translations/your-translation';
const translation = overrideByRecord(baseTranslation, {
submit: "Запустить",
}) Or const uiSchema = {
"ui:options": {
translations: {
submit: "Запустить",
},
},
}; |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
GaMeRaM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Or