Change position of Radio Buttons for flux / influxql

pull/4669/head
Andrew Watkins 2018-10-29 16:43:51 -07:00
parent 93cd858104
commit 43f0054eb3
1 changed files with 10 additions and 10 deletions

View File

@ -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