File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
frontend/ongi/lib/screens/home Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,8 @@ class _HomeDegreeGraph extends State<HomeDegreeGraph> {
249249
250250 // 경계값에서 약간 안쪽으로만 필터링
251251 final smallMargin = horizontalInterval * 0.1 ;
252- if ((value - minY).abs () < smallMargin || (value - maxY).abs () < smallMargin) {
252+ if ((value - minY).abs () < smallMargin ||
253+ (value - maxY).abs () < smallMargin) {
253254 return const SizedBox .shrink ();
254255 }
255256
@@ -373,7 +374,7 @@ class _HomeDegreeGraph extends State<HomeDegreeGraph> {
373374 const SizedBox (width: 8 ),
374375 Expanded (
375376 child: Text (
376- "${item .userName }이 ${item .formattedChange } 상승 시켰어요!" ,
377+ "${item .userName }${ item . userName == '우리 가족' ? '이' : ' 님이' } ${item .formattedChange } ${ item . contributed >= 0 ? '상승' : '하강' } 시켰어요!" ,
377378 style: const TextStyle (
378379 color: Colors .grey,
379380 fontSize: 15 ,
You can’t perform that action at this time.
0 commit comments