Skip to content

Commit

Permalink
refactor(ArtistSearchViewHolder): 공연 개수 길이에 따라 색깔이 바뀐다
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongHoonC committed Apr 3, 2024
1 parent 9e9c662 commit 71a04ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ArtistSearchViewHolder(
text = SpannableString(stageCountText).apply {
getPartialColorText(
start = COLOR_INDEX,
end = COLOR_INDEX + 1,
end = COLOR_INDEX + count.toString().length,
color = context.getColor(R.color.secondary_pink_01),
)
}
Expand Down

0 comments on commit 71a04ab

Please sign in to comment.