Skip to content

Commit 828e8a2

Browse files
authored
Merge pull request #5604 from wikimedia/T411060_design
Reordered buttons, lowercased title
2 parents 040cfd3 + 463b573 commit 828e8a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WMFComponents/Sources/WMFComponents/Components/Article Tabs/WMFArticleTabsHostingController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class WMFArticleTabsHostingController<HostedView: View>: WMFComponentHost
3131
format = viewModel.localizedStrings.navBarTitleFormat
3232
viewModel.updateNavigationBarTitleAction = { [weak self] numTabs in
3333
let newNavigationBarTitle = String.localizedStringWithFormat(self?.format ?? "", numTabs)
34-
self?.configureNavigationBar(newNavigationBarTitle)
34+
self?.configureNavigationBar(newNavigationBarTitle.lowercased())
3535
}
3636
}
3737

@@ -45,7 +45,7 @@ public class WMFArticleTabsHostingController<HostedView: View>: WMFComponentHost
4545
configureNavigationBar()
4646

4747
if dataController.shouldShowMoreDynamicTabsV2 {
48-
navigationItem.rightBarButtonItems = [overflowButton, addTabButton]
48+
navigationItem.rightBarButtonItems = [addTabButton, overflowButton]
4949
} else {
5050
navigationItem.rightBarButtonItem = addTabButton
5151
}

0 commit comments

Comments
 (0)