Skip to content
This repository was archived by the owner on May 16, 2019. It is now read-only.

Commit 6751351

Browse files
committed
Merge pull request #1638 from mariodian/extend_tx_search
Add more data to tx search
2 parents 95bf21d + c7b184b commit 6751351

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

js/templates/orderShort.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</tr>
2929
<tr>
3030
<td class="textOpacity50 padding2"><%= polyglot.t('transactions.OrderTotal') %> </td>
31-
<td class="padding2 textOpacity75">
31+
<td class="padding2 textOpacity75 js-searchPrice">
3232
<%= ob.intlNumFormat(ob.btc_total, 8) %> BTC
3333
<% if(ob.cCode != "BTC"){ %>
3434
(<%= ob.displayPrice %><!-- Would like to get this working at some point <span class="tooltip ion-information-circled fontSize12" data-tooltip="You received *VAL* in Bitcoin at the time of the sale."></span> -->)
@@ -47,7 +47,7 @@
4747
<%= polyglot.t('transactions.Buyer') %>
4848
<% } %>
4949
</td>
50-
<td class="padding2">
50+
<td class="padding2 js-searchUser">
5151
<% if(ob.vendor){ %>
5252
<a href="ob://<%= ob.vendor %>" class="textOpacity75">
5353
<%= ob.vendor %>

js/views/transactionsVw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ module.exports = pageVw.extend({
184184
},
185185

186186
setSearchList: function(targetID){
187-
this.searchTransactions = new window.List(targetID, {valueNames: ['js-searchOrderID', 'js-searchStatus', 'js-searchTitle'], page: 1000});
187+
this.searchTransactions = new window.List(targetID, {valueNames: ['js-searchOrderID', 'js-searchPrice', 'js-searchUser', 'js-searchStatus', 'js-searchTitle'], page: 1000});
188188
},
189189

190190
render: function(){

0 commit comments

Comments
 (0)