We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 997933e commit 357ae96Copy full SHA for 357ae96
ui/css/perf.css
@@ -693,3 +693,7 @@ li.pagination-active.active > button {
693
.tags-and-options-td {
694
padding: 0.75rem 0px 0px 0px !important;
695
}
696
+
697
+.multiline-text {
698
+ white-space: pre-line;
699
+}
ui/shared/TruncatedText.jsx
@@ -18,7 +18,7 @@ export default class TruncatedText extends React.Component {
18
<React.Fragment>
19
<p className={showMoreResults ? '' : 'text-truncate'}>
20
{title && <span className="font-weight-bold">{title}</span>}
21
- {text}
+ <span className="multiline-text">{text}</span>
22
</p>
23
{text.length > maxLength && (
24
<Button
0 commit comments