Change position of Radio Buttons for flux / influxql
parent
93cd858104
commit
43f0054eb3
|
@ -54,16 +54,6 @@ const SourceSelector: SFC<Props> = ({
|
|||
onSelectDynamicSource={onSelectDynamicSource}
|
||||
/>
|
||||
<Radio>
|
||||
<Radio.Button
|
||||
id="flux-source"
|
||||
titleText="Flux"
|
||||
value="Flux"
|
||||
onClick={toggleFluxOn}
|
||||
active={isFluxSelected}
|
||||
disabled={!sourceSupportsFlux}
|
||||
>
|
||||
Flux
|
||||
</Radio.Button>
|
||||
<Radio.Button
|
||||
id="influxql-source"
|
||||
titleText="InfluxQL"
|
||||
|
@ -74,6 +64,16 @@ const SourceSelector: SFC<Props> = ({
|
|||
>
|
||||
InfluxQL
|
||||
</Radio.Button>
|
||||
<Radio.Button
|
||||
id="flux-source"
|
||||
titleText="Flux"
|
||||
value="Flux"
|
||||
onClick={toggleFluxOn}
|
||||
active={isFluxSelected}
|
||||
disabled={!sourceSupportsFlux}
|
||||
>
|
||||
Flux
|
||||
</Radio.Button>
|
||||
</Radio>
|
||||
{!sourceSupportsFlux && (
|
||||
<QuestionMarkTooltip
|
||||
|
|
Loading…
Reference in New Issue