fix: add a dot after the profile name
This commit is contained in:
parent
37b31ff9da
commit
3325368d21
|
@ -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…
Reference in New Issue