Merge branch 'numeric_range_field' of https://github.com/sartography/spiff-arena into numeric_range_field

This commit is contained in:
Kayvon Martinez 2024-03-07 01:09:12 -06:00
commit 28593bc04c
2 changed files with 2 additions and 2 deletions

View File

@ -970,7 +970,7 @@ div.onboarding {
display: flex;
flex-direction: column;
align-items: flex-start;
margin-inline-end: none;
margin-inline-end: 0;
}
.radio-button-group-column > * {

View File

@ -54,7 +54,7 @@ export default function CharacterCounterField({
if (schema.maxLength === undefined) {
throw new Error(
'CharacterCounterTextField requires a "maximum" property to be specified'
'CharacterCounterTextField requires a "maxLength" property to be specified in the schema'
);
}