mirror of
https://github.com/nolanlawson/pinafore
synced 2025-02-01 14:26:45 +01:00
fix: add a dot after the profile name
This commit is contained in:
parent
7dcee05a7e
commit
5cdd1466c4
@ -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} />
|
||||
|
||||
@ -18,7 +19,7 @@
|
||||
}),
|
||||
computed: {
|
||||
profileName: ({ $currentAccountProfile }) => {
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || ''
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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} />
|
||||
|
||||
@ -18,7 +19,7 @@
|
||||
}),
|
||||
computed: {
|
||||
profileName: ({ $currentAccountProfile }) => {
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || ''
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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} />
|
||||
|
||||
@ -18,7 +19,7 @@
|
||||
}),
|
||||
computed: {
|
||||
profileName: ({ $currentAccountProfile }) => {
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || ''
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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} />
|
||||
|
||||
@ -18,7 +19,7 @@
|
||||
}),
|
||||
computed: {
|
||||
profileName: ({ $currentAccountProfile }) => {
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || ''
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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} />
|
||||
|
||||
@ -18,7 +19,7 @@
|
||||
}),
|
||||
computed: {
|
||||
profileName: ({ $currentAccountProfile }) => {
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct)) || ''
|
||||
return ($currentAccountProfile && ('@' + $currentAccountProfile.acct + ' · ')) || ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user