use small dot as delimiter

This commit is contained in:
Lukas Hass
2025-04-23 14:25:29 +00:00
parent ccf5a7f205
commit 2763c65a9b

View File

@@ -3,5 +3,5 @@ import type { Ref } from 'vue';
import { computed } from 'vue';
export function useWPTitle(elements: Ref<string[]>) {
useTitle(computed(() => `${elements.value.join(' | ')} | Woodpecker`));
useTitle(computed(() => `${elements.value.join(' · ')} · Woodpecker`));
}