From f91408ba43ec223630b58b978bc5cb850f123b1f Mon Sep 17 00:00:00 2001 From: Xiao Yijun Date: Thu, 27 Jul 2023 16:12:59 +0800 Subject: [PATCH] chore(console): update quota table row style rules (#4252) --- .../pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx b/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx index 53153a280..ae80b0c7a 100644 --- a/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx +++ b/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx @@ -68,7 +68,7 @@ function PlanQuotaTable({ subscriptionPlans }: Props) { isRowHoverEffectDisabled rowGroups={quotaTableRowGroups} rowIndexKey="quotaKey" - rowClassName={(_, index) => conditional(index % 2 !== 0 && styles.colorRow)} + rowClassName={(_, index) => conditional(index % 2 === 0 && styles.colorRow)} className={styles.table} headerTableClassName={styles.headerTable} bodyTableWrapperClassName={styles.bodyTableWrapper}