From 4b72aa33f3485404eab7423cf90f5d3d4197a9e5 Mon Sep 17 00:00:00 2001 From: QTom Date: Sat, 28 Feb 2026 10:17:59 +0800 Subject: [PATCH] fix: add enableRpmLimit to hasAnyFieldEnabled check in BulkEditModal Without this, submitting a bulk edit with only RPM changes would be rejected as "no fields selected". --- frontend/src/components/account/BulkEditAccountModal.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/account/BulkEditAccountModal.vue b/frontend/src/components/account/BulkEditAccountModal.vue index e5181741..e583b981 100644 --- a/frontend/src/components/account/BulkEditAccountModal.vue +++ b/frontend/src/components/account/BulkEditAccountModal.vue @@ -1253,7 +1253,8 @@ const handleSubmit = async () => { enablePriority.value || enableRateMultiplier.value || enableStatus.value || - enableGroups.value + enableGroups.value || + enableRpmLimit.value if (!hasAnyFieldEnabled) { appStore.showError(t('admin.accounts.bulkEdit.noFieldsSelected'))