From 4c122f460178fe7c360bb2c1d71d0a9274119fe0 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Mon, 18 Jan 2021 23:13:03 -0800 Subject: [PATCH] Query Editor: avoid word wrap (#30373) --- .../app/core/components/QueryOperationRow/QueryOperationRow.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx b/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx index a7c05babfcf..eeb2a60ee3e 100644 --- a/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx +++ b/public/app/core/components/QueryOperationRow/QueryOperationRow.tsx @@ -120,6 +120,7 @@ const getQueryOperationRowStyles = stylesFactory((theme: GrafanaTheme) => { return { wrapper: css` margin-bottom: ${theme.spacing.md}; + white-space: nowrap; `, header: css` padding: ${theme.spacing.xs} ${theme.spacing.sm};