From 9027f3fb102b24d25a5177b53473a293bc6f3b49 Mon Sep 17 00:00:00 2001 From: Siddhant Sehgal <35633575+coderrsid@users.noreply.github.com> Date: Sat, 7 Mar 2020 04:54:28 +0530 Subject: [PATCH] Desktop : Fixes #2659: Do not wrap tag title in tag bar (#2668) * No change * Fixed Tag Wrap --- ElectronClient/gui/TagList.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ElectronClient/gui/TagList.jsx b/ElectronClient/gui/TagList.jsx index 25d4c011fa..b1d37b591a 100644 --- a/ElectronClient/gui/TagList.jsx +++ b/ElectronClient/gui/TagList.jsx @@ -14,6 +14,7 @@ class TagListComponent extends React.Component { style.borderBottom = `1px solid ${theme.dividerColor}`; style.boxSizing = 'border-box'; style.fontSize = theme.fontSize; + style.whiteSpace = 'nowrap'; const tagItems = []; if (tags && tags.length > 0) {