fix: add a dot after the profile name

This commit is contained in:
Nolan Lawson 2022-11-20 08:30:19 -08:00 committed by Gabriel de Perthuis
parent 7dcee05a7e
commit 5cdd1466c4
5 changed files with 15 additions and 10 deletions

View File

@ -1,4 +1,5 @@
<Title name="{profileName} {intl.followers}" /> <!-- TODO: this should probably be formatted as intl rather than concatenated -->
<Title name="{profileName}{intl.followers}" />
<LazyPage {pageComponent} {params} /> <LazyPage {pageComponent} {params} />
@ -18,7 +19,7 @@
}), }),
computed: { computed: {
profileName: ({ $currentAccountProfile }) => { profileName: ({ $currentAccountProfile }) => {
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || '' return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
} }
} }
} }

View File

@ -1,4 +1,5 @@
<Title name="{profileName} {intl.follows}" /> <!-- TODO: this should probably be formatted as intl rather than concatenated -->
<Title name="{profileName}{intl.follows}" />
<LazyPage {pageComponent} {params} /> <LazyPage {pageComponent} {params} />
@ -18,7 +19,7 @@
}), }),
computed: { computed: {
profileName: ({ $currentAccountProfile }) => { profileName: ({ $currentAccountProfile }) => {
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || '' return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
} }
} }
} }

View File

@ -1,4 +1,5 @@
<Title name="{profileName} {intl.profile}" /> <!-- TODO: this should probably be formatted as intl rather than concatenated -->
<Title name="{profileName}{intl.profile}" />
<LazyPage {pageComponent} {params} /> <LazyPage {pageComponent} {params} />
@ -18,7 +19,7 @@
}), }),
computed: { computed: {
profileName: ({ $currentAccountProfile }) => { profileName: ({ $currentAccountProfile }) => {
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || '' return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
} }
} }
} }

View File

@ -1,4 +1,5 @@
<Title name="{profileName} {intl.profileWithMedia}" /> <!-- TODO: this should probably be formatted as intl rather than concatenated -->
<Title name="{profileName}{intl.profileWithMedia}" />
<LazyPage {pageComponent} {params} /> <LazyPage {pageComponent} {params} />
@ -18,7 +19,7 @@
}), }),
computed: { computed: {
profileName: ({ $currentAccountProfile }) => { profileName: ({ $currentAccountProfile }) => {
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || '' return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
} }
} }
} }

View File

@ -1,4 +1,5 @@
<Title name="{profileName} {intl.profileWithReplies}" /> <!-- TODO: this should probably be formatted as intl rather than concatenated -->
<Title name="{profileName}{intl.profileWithReplies}" />
<LazyPage {pageComponent} {params} /> <LazyPage {pageComponent} {params} />
@ -18,7 +19,7 @@
}), }),
computed: { computed: {
profileName: ({ $currentAccountProfile }) => { profileName: ({ $currentAccountProfile }) => {
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || '' return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
} }
} }
} }