From 442c484dc92d41d2fc1361a31f246309db814b35 Mon Sep 17 00:00:00 2001 From: InfinityPacer <160988576+InfinityPacer@users.noreply.github.com> Date: Wed, 11 Dec 2024 20:02:43 +0800 Subject: [PATCH] feat(subscribe): add state reset to 'R' on subscription reset --- src/components/cards/SubscribeCard.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/cards/SubscribeCard.vue b/src/components/cards/SubscribeCard.vue index 385c8a4c..f0e77423 100644 --- a/src/components/cards/SubscribeCard.vue +++ b/src/components/cards/SubscribeCard.vue @@ -124,6 +124,7 @@ async function resetSubscribe() { // 提示 if (result.success) { $toast.success(`${props.media?.name} 重置成功!`) + subscribeState.value = 'R' emit('save') } else $toast.error(`${props.media?.name} 重置失败:${result.message}`) } catch (e) {