Beta #30

Merged
didirus merged 990 commits from beta into release 2026-06-20 05:06:18 +00:00
Showing only changes of commit 33ff2a0759 - Show all commits
+4 -3
View File
@@ -1082,9 +1082,10 @@ const currentPlatform = computed(() => {
)
})
const currentPlatformText = computed(() =>
formatMessage(getTagMessage(currentPlatform.value, 'loader')),
)
const currentPlatformText = computed(() => {
if (!currentPlatform.value) return null
return formatMessage(getTagMessage(currentPlatform.value, 'loader'))
})
const releaseVersions = computed(() => {
const set = new Set()