From 652f2e241f4d2d38407eb29644a40f3bf7c8b6dc Mon Sep 17 00:00:00 2001 From: Emma Alexia Date: Sat, 30 Aug 2025 14:46:20 -0400 Subject: [PATCH] Allow server cancellation from admin billing (#4294) Also fixes an issue (jankily) where Modrinth+ shows as an unknown product --- .../frontend/src/pages/admin/billing/[id].vue | 29 +++++++++++++------ 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/apps/frontend/src/pages/admin/billing/[id].vue b/apps/frontend/src/pages/admin/billing/[id].vue index 0d48bb249..cac5038bb 100644 --- a/apps/frontend/src/pages/admin/billing/[id].vue +++ b/apps/frontend/src/pages/admin/billing/[id].vue @@ -71,8 +71,12 @@ Whether or not the subscription should be cancelled. Submitting this as "true" will - cancel the subscription, while submitting it as "false" will force another charge - attempt to be made. + cancel the subscription, while submitting it as "false" will + {{ + selectedCharge.status === 'open' + ? 'keep it as-is' + : 'force another charge attempt to be made' + }}. @@ -116,7 +120,8 @@
-