From 8354fc693f113c47e772d57fcc03cb11a5440974 Mon Sep 17 00:00:00 2001 From: GiordanoT Date: Thu, 21 Sep 2023 17:01:32 +0200 Subject: [PATCH] tooltip and extend fixes --- src/components/forEndUser/Input.tsx | 8 ++++---- src/graph/edge/PendingEdge.tsx | 9 ++++----- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/src/components/forEndUser/Input.tsx b/src/components/forEndUser/Input.tsx index bacf0b8bf..e63563a22 100644 --- a/src/components/forEndUser/Input.tsx +++ b/src/components/forEndUser/Input.tsx @@ -62,7 +62,7 @@ function InputComponent(props: AllProps) { ; } */ - let tooltip: string = (props.tooltip === true) ? (data["__info_of__" + field]) ? data["__info_of__" + field].txt : '' : ''; + let tooltip: string = (props.tooltip === true) ? (data["__info_of__" + field]) ? data["__info_of__" + field].txt : '' : props.tooltip; let css = 'my-auto input '; let inputClassName = (props.inputClassName || ''); @@ -118,12 +118,12 @@ function InputComponent(props: AllProps) { - return(
- {(label && !jsxLabel) &&