From 116b2568d23d17fbae7d9f4fa63477bc75c0395b Mon Sep 17 00:00:00 2001 From: Tomasz Magulski Date: Wed, 27 Apr 2022 12:41:03 +0200 Subject: [PATCH] [SALEOR-6645] Show appUrl in 3rd-party apps list (#2015) * [SALEOR-6645] Show appUrl in 3rd-party apps list --- src/apps/components/InstalledApps/InstalledApps.tsx | 9 +++++++++ src/apps/fixtures.ts | 9 ++++++--- src/apps/queries.ts | 1 + src/apps/styles.ts | 7 +++++++ src/graphql/hooks.generated.ts | 1 + src/graphql/types.generated.ts | 2 +- src/storybook/__snapshots__/Stories.test.ts.snap | 5 +++++ 7 files changed, 30 insertions(+), 4 deletions(-) diff --git a/src/apps/components/InstalledApps/InstalledApps.tsx b/src/apps/components/InstalledApps/InstalledApps.tsx index b139ac576..7e8d25859 100644 --- a/src/apps/components/InstalledApps/InstalledApps.tsx +++ b/src/apps/components/InstalledApps/InstalledApps.tsx @@ -17,6 +17,7 @@ import { } from "@saleor/macaw-ui"; import { renderCollection, stopPropagation } from "@saleor/misc"; import { ListProps } from "@saleor/types"; +import clsx from "clsx"; import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; @@ -92,6 +93,14 @@ const InstalledApps: React.FC = ({ )} + {app.node.appUrl && ( + + {app.node.appUrl} + + )}