"frontend/src/i18n/git@web.lueluesay.top:chenxi/sub2api.git" did not exist on "6bccb8a8a61a33c504fd1961bec04763421b292e"
Commit e83f0ee3 authored by yangjianbo's avatar yangjianbo
Browse files

Merge branch 'main' into test-dev

parents bff3c66d 942c3e15
...@@ -82,11 +82,21 @@ ...@@ -82,11 +82,21 @@
? 'bg-orange-100 text-orange-700 dark:bg-orange-900/30 dark:text-orange-400' ? 'bg-orange-100 text-orange-700 dark:bg-orange-900/30 dark:text-orange-400'
: value === 'openai' : value === 'openai'
? 'bg-emerald-100 text-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-400' ? 'bg-emerald-100 text-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-400'
: 'bg-blue-100 text-blue-700 dark:bg-blue-900/30 dark:text-blue-400' : value === 'antigravity'
? 'bg-purple-100 text-purple-700 dark:bg-purple-900/30 dark:text-purple-400'
: 'bg-blue-100 text-blue-700 dark:bg-blue-900/30 dark:text-blue-400'
]" ]"
> >
<PlatformIcon :platform="value" size="xs" /> <PlatformIcon :platform="value" size="xs" />
{{ value === 'anthropic' ? 'Anthropic' : value === 'openai' ? 'OpenAI' : 'Gemini' }} {{
value === 'anthropic'
? 'Anthropic'
: value === 'openai'
? 'OpenAI'
: value === 'antigravity'
? 'Antigravity'
: 'Gemini'
}}
</span> </span>
</template> </template>
...@@ -694,14 +704,16 @@ const exclusiveOptions = computed(() => [ ...@@ -694,14 +704,16 @@ const exclusiveOptions = computed(() => [
const platformOptions = computed(() => [ const platformOptions = computed(() => [
{ value: 'anthropic', label: 'Anthropic' }, { value: 'anthropic', label: 'Anthropic' },
{ value: 'openai', label: 'OpenAI' }, { value: 'openai', label: 'OpenAI' },
{ value: 'gemini', label: 'Gemini' } { value: 'gemini', label: 'Gemini' },
{ value: 'antigravity', label: 'Antigravity' }
]) ])
const platformFilterOptions = computed(() => [ const platformFilterOptions = computed(() => [
{ value: '', label: t('admin.groups.allPlatforms') }, { value: '', label: t('admin.groups.allPlatforms') },
{ value: 'anthropic', label: 'Anthropic' }, { value: 'anthropic', label: 'Anthropic' },
{ value: 'openai', label: 'OpenAI' }, { value: 'openai', label: 'OpenAI' },
{ value: 'gemini', label: 'Gemini' } { value: 'gemini', label: 'Gemini' },
{ value: 'antigravity', label: 'Antigravity' }
]) ])
const editStatusOptions = computed(() => [ const editStatusOptions = computed(() => [
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment