From d12d5cf7bf541b97f15c9c8c8d8abba34308afd0 Mon Sep 17 00:00:00 2001 From: mmelko Date: Fri, 3 May 2024 15:13:21 +0200 Subject: [PATCH] fix(Source): Use dynamic height instead of fixed height in pixels --- packages/hawtio/src/plugins/camel/routes/Source.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/hawtio/src/plugins/camel/routes/Source.tsx b/packages/hawtio/src/plugins/camel/routes/Source.tsx index 5c8e4a09..beeed59f 100644 --- a/packages/hawtio/src/plugins/camel/routes/Source.tsx +++ b/packages/hawtio/src/plugins/camel/routes/Source.tsx @@ -16,5 +16,9 @@ export const Source: React.FunctionComponent = () => { } }, [selectedNode]) - return + return ( +
+ +
+ ) }