diff --git a/ditto/base.json b/ditto/base.json index 7e63ae8a6..7acdbb538 100644 --- a/ditto/base.json +++ b/ditto/base.json @@ -559,23 +559,23 @@ "text_624ea7c29103fd010732ab7d": "Enter a number to move forward (use “.” for decimal)", "text_62d7f6178ec94cd09370e5fb": "Status", "text_62d7f6178ec94cd09370e6cf": "Edit, terminate & more", - "text_62d7f6178ec94cd09370e63c": "Edit display name", + "text_62d7f6178ec94cd09370e63c": "Edit subscription name", "text_62d7f6178ec94cd09370e64a": "Change plan", "text_62d7f6178ec94cd09370e65b": "Copy subscription_id", "text_62d904b97e690a881f2b867c": "Terminate subscription", "text_62d94cc9ccc5eebcc03160a0": "Subscription_id copied to clipboard", - "text_62d7f6178ec94cd09370e2b9": "Invoice display name (optional)", - "text_62d7f6178ec94cd09370e2cb": "Type a display name", + "text_62d7f6178ec94cd09370e2b9": "Subscription name (optional)", + "text_62d7f6178ec94cd09370e2cb": "Type a subscription name", "text_62d7f6178ec94cd09370e2d9": "This value can be used to differentiate plans", - "text_62d7f6178ec94cd09370e393": "Type a display name", + "text_62d7f6178ec94cd09370e393": "Type a subscription name", "text_62d7f6178ec94cd09370e3d1": "Downgrading plan will be applied at the end of the current billable period.", "text_62d7f6178ec94cd09370e69a": "Plan successfully changed", - "text_62d7f6178ec94cd09370e2f1": "Edit invoice display name", + "text_62d7f6178ec94cd09370e2f1": "Edit subscription name", "text_62d7f6178ec94cd09370e311": "This value can be used to differentiate same plans.", - "text_62d7f6178ec94cd09370e32d": "Invoice display name", + "text_62d7f6178ec94cd09370e32d": "Subscription name (optional)", "text_62d7f6178ec94cd09370e34d": "Cancel", - "text_62d7f6178ec94cd09370e353": "Edit display name", - "text_62d7f6178ec94cd09370e6ab": "Display name successfully edited", + "text_62d7f6178ec94cd09370e353": "Edit subscription name", + "text_62e38a4631937146a6d6d5dd": "Subscription name successfully edited", "text_62d7f6178ec94cd09370e2f3": "Terminate subscription?", "text_62d7f6178ec94cd09370e313": "You’re about to terminate {{invoice_display_name}} subscription. Customer will pay usage fees and the pro-rata of the subscription fees. Are you sure?", "text_62d7f6178ec94cd09370e351": "Terminate subscription", diff --git a/src/components/customers/usage/UsageItem.tsx b/src/components/customers/usage/UsageItem.tsx index 7a37b0ec7..59c2d2d0f 100644 --- a/src/components/customers/usage/UsageItem.tsx +++ b/src/components/customers/usage/UsageItem.tsx @@ -74,15 +74,18 @@ export const UsageItem = ({ customerId, subscription }: UsageItemProps) => { - <Typography variant="bodyHl" color="textSecondary"> + <Typography variant="bodyHl" color="textSecondary" noWrap> {name || plan?.name} </Typography> - <Typography variant="caption">{plan?.code}</Typography> + <Typography variant="caption" noWrap> + {plan?.code} + </Typography>