commit: 661d5b6d2577409cf8780beb6a9ef42dc0102c4c
parent c3c233c6fe8291bc4d691250144fb6a65e7de594
Author: tusooa <tusooa@kazv.moe>
Date: Sat, 11 Nov 2023 19:22:59 -0500
Fix frontend admin tab crashing when no primary frontend is set
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/settings_modal/admin_tabs/frontends_tab.vue b/src/components/settings_modal/admin_tabs/frontends_tab.vue
@@ -33,9 +33,9 @@
>
<strong>{{ frontend.name }}</strong>
{{ ' ' }}
- <span v-if="adminDraft[':pleroma'][':frontends'][':primary'].name === frontend.name">
+ <span v-if="adminDraft[':pleroma'][':frontends'][':primary']?.name === frontend.name">
<i18n-t
- v-if="adminDraft[':pleroma'][':frontends'][':primary'].ref === frontend.refs[0]"
+ v-if="adminDraft[':pleroma'][':frontends'][':primary']?.ref === frontend.refs[0]"
keypath="admin_dash.frontend.is_default"
/>
<i18n-t