Skip to content

Commit

Permalink
fix(surveys): result viz choice overflow bug (#19821)
Browse files Browse the repository at this point in the history
fix surveys result viz choice overflow bug
  • Loading branch information
liyiy authored Jan 17, 2024
1 parent 31a1362 commit e6e2a5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/surveys/surveyViewViz.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export function SingleChoiceQuestionPieChart({
<div className="mb-8">
<div className="font-semibold text-muted-alt">Single choice</div>
<div className="text-xl font-bold mb-2">{question.question}</div>
<div className="h-80 border rounded pt-4 pb-2 flex">
<div className="h-80 overflow-y-auto border rounded pt-4 pb-2 flex">
<div className="relative h-full w-80">
<BindLogic logic={insightLogic} props={insightProps}>
<PieChart
Expand Down

0 comments on commit e6e2a5e

Please sign in to comment.