diff --git a/frontend/src/scenes/surveys/SurveyAppearance.tsx b/frontend/src/scenes/surveys/SurveyAppearance.tsx
index c04148201e062..ef0d568f3ceb4 100644
--- a/frontend/src/scenes/surveys/SurveyAppearance.tsx
+++ b/frontend/src/scenes/surveys/SurveyAppearance.tsx
@@ -234,7 +234,7 @@ export function Customization({ appearance, surveyQuestionItem, onAppearanceChan
export function WidgetCustomization({ appearance, onAppearanceChange }: WidgetCustomizationProps): JSX.Element {
return (
<>
-
Widget type
+ Feedback button type
onAppearanceChange({ ...appearance, widgetType })}
@@ -245,21 +245,21 @@ export function WidgetCustomization({ appearance, onAppearanceChange }: WidgetCu
/>
{appearance.widgetType === 'selector' ? (
<>
- Widget selector
+ Class or ID selector
onAppearanceChange({ ...appearance, widgetSelector })}
- placeholder="ex: .feedback-button"
+ placeholder="ex: .feedback-button, #feedback-button"
/>
>
) : (
<>
- Widget label
+ Label
onAppearanceChange({ ...appearance, widgetLabel })}
/>
- Widget color
+ Background color
onAppearanceChange({ ...appearance, widgetColor })}
diff --git a/frontend/src/scenes/surveys/SurveyEdit.tsx b/frontend/src/scenes/surveys/SurveyEdit.tsx
index 9634386914767..88249193a2c35 100644
--- a/frontend/src/scenes/surveys/SurveyEdit.tsx
+++ b/frontend/src/scenes/surveys/SurveyEdit.tsx
@@ -134,8 +134,8 @@ export default function SurveyEdit(): JSX.Element {
onChange(SurveyType.Widget)}
- title="Widget (beta)"
- description="Set up a survey based on your own custom button or our prebuilt tab widget"
+ title="Feedback button (beta)"
+ description="Set up a survey based on your own custom button or our prebuilt feedback tab"
value={SurveyType.Widget}
>
@@ -354,7 +354,9 @@ export default function SurveyEdit(): JSX.Element {
<>
{survey.type === SurveyType.Widget && (
<>
- Widget customization
+
+ Feedback button customization
+
{