Skip to content

Commit

Permalink
Rename the label to Manage, and update the button's ID
Browse files Browse the repository at this point in the history
  • Loading branch information
daniloercoli committed Mar 13, 2024
1 parent 08ec9e7 commit 74d017f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class SubfilterBottomSheetFragment : BottomSheetDialogFragment() {
val pager = view.findViewById<ViewPager>(R.id.view_pager)
val titleContainer = view.findViewById<View>(R.id.title_container)
val title = view.findViewById<TextView>(R.id.title)
val editSubscriptions = view.findViewById<View>(R.id.edit_subscriptions)
val editSubscriptions = view.findViewById<View>(R.id.manage_subscriptions)
title.text = bottomSheetTitle
pager.adapter = SubfilterPagerAdapter(
requireActivity(),
Expand Down
4 changes: 2 additions & 2 deletions WordPress/src/main/res/layout/subfilter_bottom_sheet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
android:text="@string/reader_filter_by_blog_title" />

<org.wordpress.android.widgets.WPTextView
android:id="@+id/edit_subscriptions"
android:id="@+id/manage_subscriptions"
style="@style/SiteTagBottomSheetAction"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/edit"/>
android:text="@string/manage"/>
</LinearLayout>

<androidx.viewpager.widget.ViewPager
Expand Down

0 comments on commit 74d017f

Please sign in to comment.