Merge branch 'feature/tilet' of https://gitlab.verizon.com/BPHV_MIPS/vds_ios.git into feature/tilet

This commit is contained in:
Matt Bruce 2023-01-26 09:30:57 -06:00
commit 2394055815
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ extension Tilelet {
public func toTitleLockupSubTitleModel() -> TitleLockup.SubTitleModel {
TitleLockup.SubTitleModel(text: text,
textColor: textColor,
textAttributes: nil)
textAttributes: textAttributes)
}
}
}

View File

@ -48,7 +48,7 @@ extension Tilelet {
//--------------------------------------------------
public func toTitleLockupTitleModel() -> TitleLockup.TitleModel {
TitleLockup.TitleModel(text: text,
textAttributes: nil,
textAttributes: textAttributes,
textStyle: textStyle.value)
}
}