Add floData to latest transactions on homepage

This commit is contained in:
Sky Young 2018-05-18 15:29:00 -07:00
parent 686d775011
commit beb386535f

View File

@ -44,6 +44,7 @@
<tr> <tr>
<th>Hash</th> <th>Hash</th>
<th class="text-right" translate>Value Out</th> <th class="text-right" translate>Value Out</th>
<th class="text-right" translate>floData</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -53,6 +54,7 @@
<a class="ellipsis" href="tx/{{tx.txid}}">{{tx.txid}}</a> <a class="ellipsis" href="tx/{{tx.txid}}">{{tx.txid}}</a>
</td> </td>
<td class="text-right"><span class="ellipsis">{{$root.currency.getConvertion(tx.valueOut) || tx.valueOut + ' BTC'}}</span></td> <td class="text-right"><span class="ellipsis">{{$root.currency.getConvertion(tx.valueOut) || tx.valueOut + ' BTC'}}</span></td>
<td class="text-right"><span class="ellipsis">{{tx.floData}}</span></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>