Skip to content

Commit

Permalink
Fixed Preview view showing error notice while BillingRecords colletio…
Browse files Browse the repository at this point in the history
…n being empty
  • Loading branch information
Baroo committed Apr 6, 2018
1 parent 5b7b45d commit 96d702d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adescom CTM Billings/Pages/Preview.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@Model.ExceptionMessage
</div>
}
else if ((Model.ClientBilling == null) || (!Model.ClientBilling.BillingRecords.Any()))
else if (Model.ClientBilling == null)
{
<div class="alert alert-dismissible alert-danger">
Błąd wyświetlania widoku podglądu
Expand Down

0 comments on commit 96d702d

Please sign in to comment.