Skip to content

Commit

Permalink
NIFI-10594 Render empty lines in Labels
Browse files Browse the repository at this point in the history
This closes #6519

Signed-off-by: David Handermann <exceptionfactory@apache.org>
  • Loading branch information
adenes authored and exceptionfactory committed Oct 25, 2022
1 parent 3d1bf49 commit 3ed87a2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -268,7 +268,7 @@
.attr('x', '0.4em')
.attr('dy', '1.2em')
.text(function () {
return line;
return line == "" ? " " : line;
})
.style('fill', function (d) {
return nfCommon.determineContrastColor(
Expand Down

0 comments on commit 3ed87a2

Please sign in to comment.