diff --git a/frontend/src/scenes/surveys/SurveyAppearance.tsx b/frontend/src/scenes/surveys/SurveyAppearance.tsx index c8643df296bef..b9199f0906eb5 100644 --- a/frontend/src/scenes/surveys/SurveyAppearance.tsx +++ b/frontend/src/scenes/surveys/SurveyAppearance.tsx @@ -145,7 +145,7 @@ export function SurveyAppearance({ />
Border color
onAppearanceChange({ ...appearance, borderColor })} /> {featureFlags[FEATURE_FLAGS.SURVEYS_POSITIONS] && ( @@ -255,12 +255,15 @@ function BaseAppearance({ className="survey-form" style={{ backgroundColor: appearance.backgroundColor, - border: `1.5px solid ${appearance.borderColor}`, + border: `1.5px solid ${appearance.borderColor || defaultSurveyAppearance.borderColor}`, color: textColor, }} >
-
+
@@ -270,7 +273,9 @@ function BaseAppearance({ {description &&
{description}
} {type === SurveyQuestionType.Open && (