File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const Index: FC<Props> = ({
38
38
data,
39
39
showAvatar = true ,
40
40
avatarClass = '' ,
41
- avatarSize = '20px ' ,
41
+ avatarSize = '24px ' ,
42
42
className = 'small' ,
43
43
avatarSearchStr = 's=48' ,
44
44
showReputation = true ,
Original file line number Diff line number Diff line change @@ -86,9 +86,9 @@ const Index: FC<Props> = ({
86
86
'summary-stat ms-3 flex-shrink-0' ,
87
87
data . views >= 100 * 1000
88
88
? 'view-level3'
89
- : data . views >= 1000
89
+ : data . views >= 10000
90
90
? 'view-level2'
91
- : data . views >= 100
91
+ : data . views >= 1000
92
92
? 'view-level1'
93
93
: '' ,
94
94
) } >
Original file line number Diff line number Diff line change @@ -166,7 +166,11 @@ const Answers: FC = () => {
166
166
< td > { li . vote_count } </ td >
167
167
< td >
168
168
< Stack >
169
- < BaseUserCard data = { li . user_info } nameMaxWidth = "200px" />
169
+ < BaseUserCard
170
+ avatarSize = "20"
171
+ data = { li . user_info }
172
+ nameMaxWidth = "200px"
173
+ />
170
174
171
175
< FormatTime
172
176
className = "small text-secondary"
Original file line number Diff line number Diff line change @@ -165,7 +165,11 @@ const Questions: FC = () => {
165
165
</ td >
166
166
< td >
167
167
< Stack >
168
- < BaseUserCard data = { li . user_info } nameMaxWidth = "130px" />
168
+ < BaseUserCard
169
+ avatarSize = "20"
170
+ data = { li . user_info }
171
+ nameMaxWidth = "130px"
172
+ />
169
173
< FormatTime
170
174
className = "small text-secondary"
171
175
time = { li . create_time }
You can’t perform that action at this time.
0 commit comments