diff options
Diffstat (limited to '')
| -rw-r--r-- | packages/frontend/src/pages/explore.featured.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/pages/explore.featured.vue b/packages/frontend/src/pages/explore.featured.vue index 82badd40b3..189e1848d0 100644 --- a/packages/frontend/src/pages/explore.featured.vue +++ b/packages/frontend/src/pages/explore.featured.vue @@ -13,7 +13,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-else-if="tab === 'polls'"> <template v-if="ltlAvailable || gtlAvailable"> <MkFoldableSection v-if="ltlAvailable" class="_margin"> - <template #header><i class="ph-house ph-bold ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.tsx.pollsOnLocal({ name: instance.name ?? host }) }}</template> + <template #header><i class="ph-house ph-bold ph-lg" style="margin-right: 0.5em;"></i>{{ i18n.tsx.pollsOnLocal({ name: instance.name ?? webHost }) }}</template> <MkNotes :pagination="paginationForPollsLocal" :disableAutoLoad="true"/> </MkFoldableSection> @@ -37,7 +37,7 @@ SPDX-License-Identifier: AGPL-3.0-only <script lang="ts" setup> import { computed, ref } from 'vue'; -import { host } from '@@/js/config.js'; +import { webHost } from '@@/js/config.js'; import MkNotes from '@/components/MkNotes.vue'; import MkTab from '@/components/MkTab.vue'; import { i18n } from '@/i18n.js'; |