From 4c40e18c5befab3bcafe317997723d18bb829601 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Wed, 17 Jun 2020 13:04:31 +0300 Subject: [PATCH] Problems: fix item value tooltip placement --- .../components/Problems/ProblemDetails.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/panel-triggers/components/Problems/ProblemDetails.tsx b/src/panel-triggers/components/Problems/ProblemDetails.tsx index ea966b5..1fd420a 100644 --- a/src/panel-triggers/components/Problems/ProblemDetails.tsx +++ b/src/panel-triggers/components/Problems/ProblemDetails.tsx @@ -214,13 +214,13 @@ function ProblemItem(props: ProblemItemProps) { const { item, showName } = props; const itemName = utils.expandItemName(item.name, item.key_); return ( - -
- - {showName && {item.name}: } +
+ + {showName && {item.name}: } + {item.lastvalue} -
- + +
); }