From 97fbfa556533f65b67ff51f544630f0f2c5f78c6 Mon Sep 17 00:00:00 2001 From: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> Date: Tue, 30 Apr 2024 13:52:04 -0400 Subject: [PATCH] HPCC-31708 ECL Watch v9 ZAP Dialog containerized log options The ZAP dialog should display the "Include worker logs" checkbox on bare-metal; the "Include related logs" & "Include per-component logs" checkboxes on containerized envs. Signed-off-by: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> --- .../src-react/components/forms/ZAPDialog.tsx | 52 ++++++++++--------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/esp/src/src-react/components/forms/ZAPDialog.tsx b/esp/src/src-react/components/forms/ZAPDialog.tsx index 2ee5225dd60..74574bdf4a2 100644 --- a/esp/src/src-react/components/forms/ZAPDialog.tsx +++ b/esp/src/src-react/components/forms/ZAPDialog.tsx @@ -376,30 +376,34 @@ export const ZAPDialog: React.FunctionComponent = ({ />} />
-
- } - /> -
-
- } - /> -
-
- } - /> -
+ {!isContainer + ?
+ } + /> +
+ :
+
+ } + /> +
+
+ } + /> +
+
+ }