1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Desktop : Fixes #2659: Do not wrap tag title in tag bar (#2668)

* No change

* Fixed Tag Wrap
This commit is contained in:
Siddhant Sehgal 2020-03-07 04:54:28 +05:30 committed by GitHub
parent 95eb302a62
commit 9027f3fb10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {