From 45673a862b5dff8a275f4f06aa9ab9cd2265cbe5 Mon Sep 17 00:00:00 2001 From: Faran Javed Date: Fri, 20 Jun 2025 21:06:31 +0500 Subject: [PATCH] [Feat]: #1615 Add component 'type' in show data modal --- .../packages/lowcoder/src/pages/editor/LeftContent.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/client/packages/lowcoder/src/pages/editor/LeftContent.tsx b/client/packages/lowcoder/src/pages/editor/LeftContent.tsx index 126024d65..1b403d682 100644 --- a/client/packages/lowcoder/src/pages/editor/LeftContent.tsx +++ b/client/packages/lowcoder/src/pages/editor/LeftContent.tsx @@ -446,7 +446,14 @@ export const LeftContent = (props: LeftContentProps) => { {info?.show && data && ( +
{data.name}
+
+ Type: {data.type} +
+ + } open={info.show} onOk={() => setShowData([])} cancelButtonProps={{ style: { display: 'none' } }}