From fe0d8bb7da27e0f34b5db166ee54033f292b1006 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 13 Nov 2020 17:16:05 -0800 Subject: [PATCH] Return max tooltip width --- frontend/src/Components/Tooltip/Tooltip.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/Components/Tooltip/Tooltip.js b/frontend/src/Components/Tooltip/Tooltip.js index c47667d00..f3f44b7a2 100644 --- a/frontend/src/Components/Tooltip/Tooltip.js +++ b/frontend/src/Components/Tooltip/Tooltip.js @@ -22,6 +22,8 @@ function getMaxWidth() { } else { maxWidth = 450; } + + return maxWidth; } class Tooltip extends Component {