handle edge case where versions have differing envs better + update changelog + lint

This commit is contained in:
Prospector
2025-08-31 10:31:49 -07:00
parent 8058993578
commit 48e5319134
6 changed files with 26 additions and 5 deletions

View File

@@ -13,7 +13,11 @@
:disabled="disabled"
@click="emit('select')"
>
<RadioButtonCheckedIcon v-if="selected" class="text-brand h-5 w-5 shrink-0" aria-hidden="true" />
<RadioButtonCheckedIcon
v-if="selected"
class="text-brand h-5 w-5 shrink-0"
aria-hidden="true"
/>
<RadioButtonIcon v-else class="h-5 w-5 shrink-0" aria-hidden="true" />
<slot />
</button>

View File

@@ -245,7 +245,12 @@ const simulateSave = ref(false)
:class="{ 'mt-2': index > 0 }"
:selected="currentOuterOption === key"
:disabled="disabled"
:aria-label="formatMessage(optionLabelFormat, { title: formatMessage(title), description: formatMessage(description)})"
:aria-label="
formatMessage(optionLabelFormat, {
title: formatMessage(title),
description: formatMessage(description),
})
"
@select="
() => {
if (currentOuterOption !== key) {