1
0

fix(logo): use correct month for pride logo change

This commit is contained in:
kolaente 2024-06-01 23:20:02 +02:00
parent a53ee4143f
commit 8b2c3075c3
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B

View File

@ -9,7 +9,7 @@ import {MILLISECONDS_A_HOUR} from '@/constants/date'
const now = useNow({
interval: MILLISECONDS_A_HOUR,
})
const Logo = computed(() => window.ALLOW_ICON_CHANGES && now.value.getMonth() === 6 ? LogoFullPride : LogoFull)
const Logo = computed(() => window.ALLOW_ICON_CHANGES && now.value.getMonth() === 5 ? LogoFullPride : LogoFull)
const CustomLogo = computed(() => window.CUSTOM_LOGO_URL)
</script>