mirror of
https://github.com/scratchfoundation/scratch-paint.git
synced 2024-12-23 05:52:42 -05:00
remove tab index
This commit is contained in:
parent
499635ddf1
commit
d9b683b42c
3 changed files with 0 additions and 3 deletions
|
@ -20,7 +20,6 @@ const FillColorIndicatorComponent = props => (
|
||||||
<div className={styles.inputGroup}>
|
<div className={styles.inputGroup}>
|
||||||
<Label text={props.intl.formatMessage(messages.fill)}>
|
<Label text={props.intl.formatMessage(messages.fill)}>
|
||||||
<BufferedInput
|
<BufferedInput
|
||||||
tabIndex="1"
|
|
||||||
type="text"
|
type="text"
|
||||||
value={props.fillColor}
|
value={props.fillColor}
|
||||||
onSubmit={props.onChangeFillColor}
|
onSubmit={props.onChangeFillColor}
|
||||||
|
|
|
@ -44,7 +44,6 @@ class PaintEditorComponent extends React.Component {
|
||||||
<div className={styles.inputGroup}>
|
<div className={styles.inputGroup}>
|
||||||
<Label text={this.props.intl.formatMessage(messages.costume)}>
|
<Label text={this.props.intl.formatMessage(messages.costume)}>
|
||||||
<BufferedInput
|
<BufferedInput
|
||||||
tabIndex="1"
|
|
||||||
type="text"
|
type="text"
|
||||||
value="meow"
|
value="meow"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -20,7 +20,6 @@ const StrokeColorIndicatorComponent = props => (
|
||||||
<div className={styles.inputGroup}>
|
<div className={styles.inputGroup}>
|
||||||
<Label text={props.intl.formatMessage(messages.stroke)}>
|
<Label text={props.intl.formatMessage(messages.stroke)}>
|
||||||
<BufferedInput
|
<BufferedInput
|
||||||
tabIndex="1"
|
|
||||||
type="text"
|
type="text"
|
||||||
value={props.strokeColor}
|
value={props.strokeColor}
|
||||||
onSubmit={props.onChangeStrokeColor}
|
onSubmit={props.onChangeStrokeColor}
|
||||||
|
|
Loading…
Reference in a new issue