Skip to content

Commit

Permalink
Fix: message is null when message is empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsSmets committed Dec 17, 2024
1 parent 905785f commit baed331
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</div>
}

@if (!report.message) {
@if (report.message === null) {
<div class="btn btn-static px-2">
Message is null
</div>
Expand Down

0 comments on commit baed331

Please sign in to comment.