From 46deb79f50971775abbf10c3b4bf646a752c11c7 Mon Sep 17 00:00:00 2001 From: Kamil Gabryjelski Date: Tue, 26 Jul 2022 10:21:17 +0200 Subject: [PATCH] fix: Fix chart title truncating when Chrome is zoomed out (#20847) --- superset-frontend/src/components/DynamicEditableTitle/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/components/DynamicEditableTitle/index.tsx b/superset-frontend/src/components/DynamicEditableTitle/index.tsx index d9e7066330..86205bebc2 100644 --- a/superset-frontend/src/components/DynamicEditableTitle/index.tsx +++ b/superset-frontend/src/components/DynamicEditableTitle/index.tsx @@ -197,7 +197,7 @@ export const DynamicEditableTitle = ({ ${inputWidth && inputWidth > 0 && css` - width: ${inputWidth}px; + width: ${inputWidth + 1}px; `} `} />