File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ const LikertScale = (props: LikertScaleProps): JSX.Element => {
67
67
emptyIcon = { < RadioButtonUncheckedIcon fontSize = "inherit" /> }
68
68
onChange = { handleChange }
69
69
highlightSelectedOnly
70
+ max = { levels }
70
71
/>
71
72
< Label variant = "caption" > { maxLabel } </ Label >
72
73
</ Stack >
Original file line number Diff line number Diff line change @@ -128,14 +128,14 @@ const UsefulnessNoveltyRating: FC<{
128
128
onChange = { ( rating ) => handleRatingChange ( 'novelty' , rating ) }
129
129
minLabel = { t ( 'COMMON' ) }
130
130
maxLabel = { t ( 'NOVEL' ) }
131
- levels = { 7 }
131
+ levels = { 5 }
132
132
value = { noveltyRating }
133
133
/>
134
134
< LikertScale
135
135
onChange = { ( rating ) => handleRatingChange ( 'relevance' , rating ) }
136
136
minLabel = { t ( 'USELESS' ) }
137
137
maxLabel = { t ( 'USEFUL' ) }
138
- levels = { 7 }
138
+ levels = { 5 }
139
139
value = { usefulnessRating }
140
140
/>
141
141
</ Container >
You can’t perform that action at this time.
0 commit comments