From 0d48da24dcccdecbd35c85fc77ac0b2f00bd3393 Mon Sep 17 00:00:00 2001 From: Denis Plynskiy Date: Wed, 12 Jul 2023 16:12:36 +0300 Subject: [PATCH] feat: fix wrong rowKey for tables (#2070) --- web/src/CertListPage.js | 2 +- web/src/PlanListPage.js | 2 +- web/src/PricingListPage.js | 2 +- web/src/SubscriptionListPage.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/CertListPage.js b/web/src/CertListPage.js index 4ae94cdc..cb6e04d2 100644 --- a/web/src/CertListPage.js +++ b/web/src/CertListPage.js @@ -213,7 +213,7 @@ class CertListPage extends BaseListPage { return (
- `${record.owner}/${record.name}`} size="middle" bordered pagination={paginationProps} title={() => (
{i18next.t("general:Certs")}     diff --git a/web/src/PlanListPage.js b/web/src/PlanListPage.js index cdcae64c..853c97ad 100644 --- a/web/src/PlanListPage.js +++ b/web/src/PlanListPage.js @@ -196,7 +196,7 @@ class PlanListPage extends BaseListPage { return (
-
`${record.owner}/${record.name}`} size="middle" bordered pagination={paginationProps} title={() => (
{i18next.t("general:Plans")}     diff --git a/web/src/PricingListPage.js b/web/src/PricingListPage.js index a6317921..967f2f28 100644 --- a/web/src/PricingListPage.js +++ b/web/src/PricingListPage.js @@ -165,7 +165,7 @@ class PricingListPage extends BaseListPage { return (
-
`${record.owner}/${record.name}`} size="middle" bordered pagination={paginationProps} title={() => (
{i18next.t("general:Pricings")}     diff --git a/web/src/SubscriptionListPage.js b/web/src/SubscriptionListPage.js index 92b4319b..60825656 100644 --- a/web/src/SubscriptionListPage.js +++ b/web/src/SubscriptionListPage.js @@ -215,7 +215,7 @@ class SubscriptionListPage extends BaseListPage { return (
-
`${record.owner}/${record.name}`} size="middle" bordered pagination={paginationProps} title={() => (
{i18next.t("general:Subscriptions")}