Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Comment applied
Browse files Browse the repository at this point in the history
  • Loading branch information
bakulf committed Nov 3, 2023
1 parent 718a7fc commit 5f62b9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/nav/NavFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function toggleDark() {
</CommonTooltip>
</div>
<div>
<NuxtLink to="/about" target="_blank">
<NuxtLink to="/about">
About
</NuxtLink>
&middot;
Expand Down
6 changes: 2 additions & 4 deletions components/settings/SettingsAbout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const { t } = useI18n()
const subtitle = t('about.subtitle')
const administered_by = t('about.administered_by')
const contact = t('about.contact', [instance.contact.email])
const contact = t('about.contact', [`<a href="mailto:${instance.contact.email}">${instance.contact.email}</a>`])
const server_rules = t('about.server_rules')
const footer_about = t('about.footer_about')
const footer_profiles_directory = t('about.footer_privacy_notice')
Expand Down Expand Up @@ -34,9 +34,7 @@ const footer_view_code = t('about.footer_view_code', [instance.version])

<AccountCard :account="instance.contact.account" />

<div p-t-2>
{{ contact }}
</div>
<div p-t-2 class="content-rich" v-html="contact" />
</div>

<div m-b-5 b-t-1px p-t-5 class="content-rich" v-html="content" />
Expand Down

0 comments on commit 5f62b9d

Please sign in to comment.