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 apache#6519

Signed-off-by: David Handermann <exceptionfactory@apache.org>
  • Loading branch information
adenes authored and Priyanka Awatramani committed Oct 30, 2022
1 parent 7519bcc commit 6f86c86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
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 6f86c86

Please sign in to comment.