Bug in closing tag - breaks SPA themes
Posted: 26 Jul 2019, 23:33
Hi,
There is a bug in your `DisplayUI.pm` file on line 1398 (v13.04), where you print `No logs entries`.
Currently it looks like:
while it should be with </div>
Therefore closing <div> should be </div>.
Thanks.
There is a bug in your `DisplayUI.pm` file on line 1398 (v13.04), where you print `No logs entries`.
Currently it looks like:
Code: Select all
print "<div class='bs-callout bs-callout-info'> No logs entries found<div>\n";
Code: Select all
print "<div class='bs-callout bs-callout-info'> No logs entries found</div>\n";
Thanks.