From bbf94b8a0df5bd552a8e8784ef45ac365f30db62 Mon Sep 17 00:00:00 2001 From: klaus Date: Fri, 10 Jul 2026 07:35:39 +0900 Subject: [PATCH] =?UTF-8?q?feat(creator-channel):=20=EC=A0=95=EB=A0=AC=20?= =?UTF-8?q?=ED=8C=9D=EC=97=85=20=EC=98=B5=EC=85=98=EC=9D=84=20=EC=A3=BC?= =?UTF-8?q?=EC=9E=85=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/v2/creator/channel/ui/CreatorChannelSortPopup.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/kr/co/vividnext/sodalive/v2/creator/channel/ui/CreatorChannelSortPopup.kt b/app/src/main/java/kr/co/vividnext/sodalive/v2/creator/channel/ui/CreatorChannelSortPopup.kt index 045f82e4..bac128df 100644 --- a/app/src/main/java/kr/co/vividnext/sodalive/v2/creator/channel/ui/CreatorChannelSortPopup.kt +++ b/app/src/main/java/kr/co/vividnext/sodalive/v2/creator/channel/ui/CreatorChannelSortPopup.kt @@ -19,6 +19,7 @@ import kr.co.vividnext.sodalive.v2.creator.channel.model.toSortOptionUiModel class CreatorChannelSortPopup( private val anchor: View, private val selectedSort: ContentSort, + private val sortOptions: List = ContentSort.entries, private val onSortSelected: (ContentSort) -> Unit ) { @@ -61,7 +62,7 @@ class CreatorChannelSortPopup( val sample = view.findViewById(R.id.tv_creator_channel_sort_option_sample) container.removeView(sample) - ContentSort.entries.map { it.toSortOptionUiModel(selectedSort) }.forEach { option -> + sortOptions.map { it.toSortOptionUiModel(selectedSort) }.forEach { option -> val row = TextView(anchor.context).apply { layoutParams = LinearLayout.LayoutParams( ViewGroup.LayoutParams.MATCH_PARENT,