Mercurial > public > lazybear
changeset 63:e3c70a820d51
Update InsiderDetail
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 20 Jan 2021 17:48:43 +0100 |
parents | 9b84adfa89d4 |
children | 320986aec75e |
files | LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate lazybear/Supply views/InsiderDetail.swift |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
Binary file LazyBear.xcodeproj/project.xcworkspace/xcuserdata/dennis.xcuserdatad/UserInterfaceState.xcuserstate has changed
--- a/lazybear/Supply views/InsiderDetail.swift Wed Jan 20 17:46:17 2021 +0100 +++ b/lazybear/Supply views/InsiderDetail.swift Wed Jan 20 17:48:43 2021 +0100 @@ -15,7 +15,7 @@ NavigationView { Form { Section(header: Text("Owner")) { - SectionBody(image: "person.fill", data: transaction.reporting_owner) + SectionBody(image: "person.fill", data: transaction.reporting_owner.capitalized) } Section(header: Text("Date YYYY/MM/DD")) { @@ -28,7 +28,7 @@ Section(header: Text("Transaction type")) { let data = transaction.transaction_type.components(separatedBy: "-")[1] - SectionBody(image: "dollarsing.circle", data: data) + SectionBody(image: "dollarsign.circle", data: data) SectionBody(image: "info.circle", data: "Type: " + transaction.transaction_type) } let transactionCode = transaction.transaction_type.components(separatedBy: "-")[0]