From 4165f5210996f0fe13a924f6fe79c551d096f76d Mon Sep 17 00:00:00 2001 From: Comfy Org PR Bot Date: Sat, 10 Jan 2026 09:51:08 +0900 Subject: [PATCH] [backport cloud/1.36] fix: UX nits and styles (#7936) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Backport of #7933 to `cloud/1.36` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-7936-backport-cloud-1-36-fix-UX-nits-and-styles-2e36d73d365081ce89add4b9857df1db) by [Unito](https://www.unito.io) Co-authored-by: Simula_r <18093452+simula-r@users.noreply.github.com> --- .../content/TopUpCreditsDialogContent.vue | 15 ++++++++------- .../ui/stepper/FormattedNumberStepper.vue | 17 +++++++++++------ src/locales/en/main.json | 2 ++ 3 files changed, 21 insertions(+), 13 deletions(-) diff --git a/src/components/dialog/content/TopUpCreditsDialogContent.vue b/src/components/dialog/content/TopUpCreditsDialogContent.vue index 0a2884daf6..4867e7a392 100644 --- a/src/components/dialog/content/TopUpCreditsDialogContent.vue +++ b/src/components/dialog/content/TopUpCreditsDialogContent.vue @@ -95,22 +95,23 @@

+ {{ - $t('credits.topUp.minimumPurchase', { - amount: MIN_AMOUNT, - credits: usdToCredits(MIN_AMOUNT) + $t('credits.topUp.minRequired', { + credits: formatNumber(usdToCredits(MIN_AMOUNT)) }) }}

+ {{ - $t('credits.topUp.maximumAmount', { - amount: formatNumber(MAX_AMOUNT) + $t('credits.topUp.maxAllowed', { + credits: formatNumber(usdToCredits(MAX_AMOUNT)) }) }} {{ $t('credits.topUp.needMore') }} diff --git a/src/components/ui/stepper/FormattedNumberStepper.vue b/src/components/ui/stepper/FormattedNumberStepper.vue index ab8a6bf1e6..2de6bbf131 100644 --- a/src/components/ui/stepper/FormattedNumberStepper.vue +++ b/src/components/ui/stepper/FormattedNumberStepper.vue @@ -1,8 +1,9 @@