Merge branch 'bugfix/CXTDT-561854' into 'develop'

Digital ACT191 defect CXTDT-561854 - Update font of navigation bar label button to BoldBodySmall

### Summary
Navigation Bar Button Font

### JIRA Ticket
https://onejira.verizon.com/browse/CXTDT-561854

Co-authored-by: Scott Pfeil <Scott.Pfeil3@verizonwireless.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/1117
This commit is contained in:
Hedden, Kyle Matthew 2024-05-23 16:03:06 +00:00
commit 756b464cf6

View File

@ -16,7 +16,7 @@
let actionObject = ActionDelegate()
let button = self.init(title: title, style: .plain, target: actionObject, action: #selector(actionObject.callActionBlock(_:)))
button.actionDelegate = actionObject
button.setTitleTextAttributes([NSAttributedString.Key.font: Styler.Font.RegularBodySmall.getFont()], for: .normal)
button.setTitleTextAttributes([NSAttributedString.Key.font: Styler.Font.BoldBodySmall.getFont()], for: .normal)
return button
}