Skip to content

Commit

Permalink
Display line breaks in data tables
Browse files Browse the repository at this point in the history
Some values might contain line breaks, for example the relatively
new setting SCENARIO_DEFINITIONS_YAML. Before everything was
printed in one line. Line breaks got lost.
  • Loading branch information
perlpunk committed Jul 20, 2023
1 parent f2a2a13 commit 1ff7058
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion assets/stylesheets/tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@
text-align: center;
}
}

table.dataTable tr {
td span {
white-space: pre;
}
}
table.dataTable {
td.name {
text-align: left;
Expand Down

0 comments on commit 1ff7058

Please sign in to comment.