diff --git a/front/src/components/About.vue b/front/src/components/About.vue
index e448118a4..e98d0333e 100644
--- a/front/src/components/About.vue
+++ b/front/src/components/About.vue
@@ -12,6 +12,8 @@ import useMarkdown from '~/composables/useMarkdown'
import Link from './ui/Link.vue'
import Card from './ui/Card.vue'
+import Button from './ui/Button.vue'
+import Layout from './ui/Layout.vue'
const store = useStore()
const nodeinfo = computed(() => store.state.instance.nodeinfo)
@@ -21,7 +23,10 @@ const labels = computed(() => ({
title: t('components.About.title')
}))
-const podName = computed(() => get(nodeinfo.value, 'metadata.nodeName') ?? 'Funkwhale')
+const podName = computed(() => (n => n === "" ? "No name" : n ?? 'Funkwhale')(get(nodeinfo.value, 'metadata.nodeName')))
+
+console.log(podName)
+
const banner = computed(() => get(nodeinfo.value, 'metadata.banner'))
const shortDescription = computed(() => get(nodeinfo.value, 'metadata.shortDescription'))
@@ -80,14 +85,14 @@ const federationEnabled = computed(() => {
-
@@ -98,9 +103,12 @@ const federationEnabled = computed(() => {
{{ t('components.About.description.funkwhale') }}
@@ -148,7 +156,25 @@ const federationEnabled = computed(() => {
+ {{ t('components.About.description.quota', {quota: defaultUploadQuota}) }} +
+ + + + +