mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-12-28 16:51:20 +01:00
Show default value in color field
This commit is contained in:
parent
1058dbfb5a
commit
384b2d4bea
2 changed files with 2 additions and 2 deletions
|
@ -17,6 +17,7 @@ class ColorField extends React.Component {
|
|||
value: React.PropTypes.string,
|
||||
doc: React.PropTypes.string,
|
||||
style: React.PropTypes.object,
|
||||
default: React.PropTypes.string,
|
||||
}
|
||||
|
||||
constructor(props) {
|
||||
|
|
|
@ -51,6 +51,7 @@ export default class SpecField extends React.Component {
|
|||
render() {
|
||||
const commonProps = {
|
||||
style: this.props.style,
|
||||
default: this.props.fieldSpec.default,
|
||||
value: this.props.value,
|
||||
name: this.props.fieldName,
|
||||
onChange: newValue => this.props.onChange(this.props.fieldName, newValue)
|
||||
|
@ -59,7 +60,6 @@ export default class SpecField extends React.Component {
|
|||
case 'number': return (
|
||||
<NumberInput
|
||||
{...commonProps}
|
||||
default={this.props.fieldSpec.default}
|
||||
min={this.props.fieldSpec.minimum}
|
||||
max={this.props.fieldSpec.maximum}
|
||||
/>
|
||||
|
@ -98,7 +98,6 @@ export default class SpecField extends React.Component {
|
|||
{...commonProps}
|
||||
type={this.props.fieldSpec.value}
|
||||
length={this.props.fieldSpec.length}
|
||||
default={this.props.fieldSpec.default}
|
||||
/>
|
||||
)
|
||||
default: return null
|
||||
|
|
Loading…
Reference in a new issue