fix: add a dot after the profile name

page-titles
Nolan Lawson 2022-11-20 08:30:19 -08:00
rodzic 37b31ff9da
commit 3325368d21
5 zmienionych plików z 15 dodań i 10 usunięć

Wyświetl plik

@ -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 + ' · ')) || ''
}
}
}

Wyświetl plik

@ -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 + ' · ')) || ''
}
}
}

Wyświetl plik

@ -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 + ' · ')) || ''
}
}
}

Wyświetl plik

@ -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 + ' · ')) || ''
}
}
}

Wyświetl plik

@ -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 + ' · ')) || ''
}
}
}