Skip to content

Commit 168fdf0

Browse files
Bugfix: Remove black empty bar in tx-table after search (#1912)
Co-authored-by: moneymanolis <[email protected]>
1 parent 6a8ceb3 commit 168fdf0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/cryptoadvance/specter/templates/includes/tx-table.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,11 +1000,13 @@ <h1>{{ _("Export transactions to CSV") }}</h1>
10001000
if (this.pageCount == 0 || txlist.length == 0) {
10011001
this.tableHeader.classList.add('hidden');
10021002
this.feedbackRow.classList.add('feedback-row');
1003+
this.feedbackRow.classList.remove('hidden');
10031004
this.rescanHint.classList.remove('hidden')
10041005
this.rescanHint.classList.add('rescan-hint')
10051006
this.pageCount = 1;
10061007
} else {
10071008
this.tableHeader.classList.remove('hidden');
1009+
this.feedbackRow.classList.remove('feedback-row');
10081010
this.feedbackRow.classList.add('hidden');
10091011
this.rescanHint.classList.remove('rescan-hint')
10101012
this.rescanHint.classList.add('hidden');

0 commit comments

Comments
 (0)