mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-26 17:30:07 +00:00
[backport rh-test] fix: Display appropriate title for unsubscribed state (#6513)
Backport of #6396 to `rh-test` Automatically created by backport workflow. Co-authored-by: Christian Byrne <cbyrne@comfy.org> Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1925,6 +1925,7 @@
|
|||||||
},
|
},
|
||||||
"subscription": {
|
"subscription": {
|
||||||
"title": "Subscription",
|
"title": "Subscription",
|
||||||
|
"titleUnsubscribed": "Subscribe to Comfy Cloud",
|
||||||
"comfyCloud": "Comfy Cloud",
|
"comfyCloud": "Comfy Cloud",
|
||||||
"beta": "BETA",
|
"beta": "BETA",
|
||||||
"perMonth": "USD / month",
|
"perMonth": "USD / month",
|
||||||
|
|||||||
@@ -3,7 +3,11 @@
|
|||||||
<div class="flex h-full flex-col gap-6">
|
<div class="flex h-full flex-col gap-6">
|
||||||
<div class="flex items-baseline gap-2">
|
<div class="flex items-baseline gap-2">
|
||||||
<span class="text-2xl font-inter font-semibold leading-tight">
|
<span class="text-2xl font-inter font-semibold leading-tight">
|
||||||
{{ $t('subscription.title') }}
|
{{
|
||||||
|
isActiveSubscription
|
||||||
|
? $t('subscription.title')
|
||||||
|
: $t('subscription.titleUnsubscribed')
|
||||||
|
}}
|
||||||
</span>
|
</span>
|
||||||
<CloudBadge
|
<CloudBadge
|
||||||
reverse-order
|
reverse-order
|
||||||
|
|||||||
Reference in New Issue
Block a user