Skip to content

Commit

Permalink
[lot-viewer] add more empty cells
Browse files Browse the repository at this point in the history
otherwise table borders don't get drawn
  • Loading branch information
christopherlam committed Jul 1, 2021
1 parent e818938 commit 074d583
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnucash/report/reports/standard/lot-viewer.scm
Expand Up @@ -169,7 +169,7 @@
(#f #f #f ,@(map lot->guid lots) #f)))

(gnc:html-table-append-row!
table `(#f "Document" #f ,@(map lot->document lots)))
table `(#f "Document" #f ,@(map lot->document lots) #f))

(for-each
(lambda (txn)
Expand All @@ -192,7 +192,7 @@
(sort transactions (lambda (a b) (< (xaccTransOrder a b) 0))))

(gnc:html-table-append-row!
table `(#f "Balance" #f ,@(map lot->balance lots)))
table `(#f "Balance" #f ,@(map lot->balance lots) #f))

(gnc:html-document-add-object! document table))))

Expand Down

0 comments on commit 074d583

Please sign in to comment.