File tree 7 files changed +24
-7
lines changed
7 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export class UnconnectedDropdown extends Component {
12
12
}
13
13
14
14
return (
15
- < Field { ...this . props } >
15
+ < Field { ...this . props } noDefaultIndicator = { this . props . noDefaultIndicator } >
16
16
< DropdownWidget
17
17
backgroundDark = { this . props . backgroundDark }
18
18
options = { this . props . options }
Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ class UnconnectedLocationSelector extends Component {
102
102
fullValue = { mode }
103
103
updatePlot = { this . setMode }
104
104
attr = { this . props . attr }
105
+ noDefaultIndicator
105
106
/>
106
107
</ Field >
107
108
{ mode === 'latlon' ? (
Original file line number Diff line number Diff line change @@ -127,14 +127,15 @@ class UnconnectedMarkerColor extends Component {
127
127
this . props . container . marker . colorsrc === MULTI_VALUED ) ) ;
128
128
return (
129
129
< Field multiValued = { multiValued } noDefaultIndicator >
130
- < DataSelector suppressMultiValuedMessage attr = "marker.color" />
130
+ < DataSelector suppressMultiValuedMessage attr = "marker.color" noDefaultIndicator />
131
131
{ this . props . container . marker &&
132
132
this . props . container . marker . colorscale === MULTI_VALUED ? null : (
133
133
< ColorscalePicker
134
134
suppressMultiValuedMessage
135
135
attr = "marker.colorscale"
136
136
updatePlot = { this . setColorScale }
137
137
colorscale = { this . state . colorscale }
138
+ noDefaultIndicator
138
139
/>
139
140
) }
140
141
</ Field >
Original file line number Diff line number Diff line change @@ -80,7 +80,12 @@ class UnconnectedMarkerSize extends Component {
80
80
noDefaultIndicator
81
81
/>
82
82
) : multiValued ? null : (
83
- < DataSelector suppressMultiValuedMessage attr = "marker.size" updatePlot = { this . setValue } />
83
+ < DataSelector
84
+ suppressMultiValuedMessage
85
+ attr = "marker.size"
86
+ updatePlot = { this . setValue }
87
+ noDefaultIndicator
88
+ />
84
89
) }
85
90
</ Field >
86
91
) ;
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import {connectToContainer} from 'lib';
7
7
export class UnconnectedRadio extends Component {
8
8
render ( ) {
9
9
return (
10
- < Field { ...this . props } >
10
+ < Field { ...this . props } noDefaultIndicator = { this . props . noDefaultIndicator } >
11
11
< RadioBlocks
12
12
options = { this . props . options }
13
13
activeOption = { this . props . fullValue }
Original file line number Diff line number Diff line change @@ -24,12 +24,17 @@ export class UnconnectedTextPosition extends Component {
24
24
const control =
25
25
this . state . posType === 'simple' ? (
26
26
< >
27
- < Info >
27
+ < Info noDefaultIndicator >
28
28
{ _ (
29
29
'This will position all text values on the plot according to the selected position.'
30
30
) }
31
31
</ Info >
32
- < Dropdown options = { this . props . options } attr = "textposition" clearable = { false } />
32
+ < Dropdown
33
+ options = { this . props . options }
34
+ attr = "textposition"
35
+ clearable = { false }
36
+ noDefaultIndicator
37
+ />
33
38
</ >
34
39
) : (
35
40
< >
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ class UpdateMenuButtons extends Component {
25
25
updatePlot = { index => this . setState ( { currentButtonIndex : index } ) }
26
26
clearable = { false }
27
27
fullValue = { this . state . currentButtonIndex }
28
+ noDefaultIndicator
28
29
/>
29
30
) ;
30
31
}
@@ -33,7 +34,11 @@ class UpdateMenuButtons extends Component {
33
34
return (
34
35
< Field >
35
36
{ this . renderDropdown ( ) }
36
- < TextEditor attr = { `buttons[${ this . state . currentButtonIndex } ].label` } richTextOnly />
37
+ < TextEditor
38
+ attr = { `buttons[${ this . state . currentButtonIndex } ].label` }
39
+ richTextOnly
40
+ noDefaultIndicator
41
+ />
37
42
</ Field >
38
43
) ;
39
44
}
You can’t perform that action at this time.
0 commit comments