From 1702301f62ac5227683b4b4becd0efd84126d1e5 Mon Sep 17 00:00:00 2001 From: Pavel Angelov Date: Mon, 10 Nov 2025 14:27:35 +0200 Subject: [PATCH] this --- .../subscribe-form/SubscribeForm.tsx | 3 + .../SubscribeInformation.spec.tsx} | 9 +-- .../SubscribeInformation.tsx | 55 ++++++++++++++++ .../components/subscribe-information/index.ts | 3 + .../subscription-panel/SubscriptionPanel.tsx | 6 +- .../ClickableAppendInfo.tsx | 63 ------------------- .../components/clickable-append-info/index.ts | 3 - .../clickable-append-info/styles.module.scss | 8 --- 8 files changed, 69 insertions(+), 81 deletions(-) rename redisinsight/ui/src/pages/pub-sub/components/{subscription-panel/components/clickable-append-info/ClickableAppendInfo.spec.tsx => subscribe-information/SubscribeInformation.spec.tsx} (62%) create mode 100644 redisinsight/ui/src/pages/pub-sub/components/subscribe-information/SubscribeInformation.tsx create mode 100644 redisinsight/ui/src/pages/pub-sub/components/subscribe-information/index.ts delete mode 100644 redisinsight/ui/src/pages/pub-sub/components/subscription-panel/components/clickable-append-info/ClickableAppendInfo.tsx delete mode 100644 redisinsight/ui/src/pages/pub-sub/components/subscription-panel/components/clickable-append-info/index.ts delete mode 100644 redisinsight/ui/src/pages/pub-sub/components/subscription-panel/components/clickable-append-info/styles.module.scss diff --git a/redisinsight/ui/src/pages/pub-sub/components/subscribe-form/SubscribeForm.tsx b/redisinsight/ui/src/pages/pub-sub/components/subscribe-form/SubscribeForm.tsx index 8afa59aac9..76d6905796 100644 --- a/redisinsight/ui/src/pages/pub-sub/components/subscribe-form/SubscribeForm.tsx +++ b/redisinsight/ui/src/pages/pub-sub/components/subscribe-form/SubscribeForm.tsx @@ -13,6 +13,7 @@ import { DEFAULT_SEARCH_MATCH } from 'uiSrc/constants/api' import { UserIcon, IndicatorExcludedIcon } from 'uiSrc/components/base/icons' import { FlexProps } from 'uiSrc/components/base/layout/flex/flex.styles' +import SubscribeInformation from '../subscribe-information' export interface SubscribeFormProps extends Omit {} @@ -52,6 +53,8 @@ const SubscribeForm = (props: SubscribeFormProps) => { /> + +