Skip to content

Commit

Permalink
feat(experiments): Reorder web experiment transform buttons (#27240)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber authored Jan 3, 2025
1 parent 3e5f3ec commit 9ac8b6b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions frontend/src/toolbar/experiments/WebExperimentTransformField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,16 +109,6 @@ export function WebExperimentTransformField({
<LemonSegmentedButton
fullWidth
options={[
{
value: 'html',
label: 'HTML',
icon:
transform.html && transform.html.length > 0 ? (
<IconCheckCircle className="text-success" />
) : (
<IconCode />
),
},
{
value: 'text',
label: 'Text',
Expand All @@ -139,6 +129,16 @@ export function WebExperimentTransformField({
<IconAIText />
),
},
{
value: 'html',
label: 'HTML',
icon:
transform.html && transform.html.length > 0 ? (
<IconCheckCircle className="text-success" />
) : (
<IconCode />
),
},
]}
onChange={(e) => {
setTransformSelected(e)
Expand Down

0 comments on commit 9ac8b6b

Please sign in to comment.