Enforce character limit on axes options prefix/suffix inputs
Now they match the limit set in the single stat optionspull/2848/head
parent
b5bf25aa1b
commit
16374274b1
|
@ -124,6 +124,7 @@ class AxesOptions extends Component {
|
||||||
value={prefix}
|
value={prefix}
|
||||||
labelText="Y-Value's Prefix"
|
labelText="Y-Value's Prefix"
|
||||||
onChange={this.handleSetPrefixSuffix}
|
onChange={this.handleSetPrefixSuffix}
|
||||||
|
maxLength="5"
|
||||||
/>
|
/>
|
||||||
<Input
|
<Input
|
||||||
name="suffix"
|
name="suffix"
|
||||||
|
@ -131,6 +132,7 @@ class AxesOptions extends Component {
|
||||||
value={suffix}
|
value={suffix}
|
||||||
labelText="Y-Value's Suffix"
|
labelText="Y-Value's Suffix"
|
||||||
onChange={this.handleSetPrefixSuffix}
|
onChange={this.handleSetPrefixSuffix}
|
||||||
|
maxLength="5"
|
||||||
/>
|
/>
|
||||||
<Tabber
|
<Tabber
|
||||||
labelText="Y-Value's Format"
|
labelText="Y-Value's Format"
|
||||||
|
|
Loading…
Reference in New Issue