Add LockTime visibility for transactions

For transactions without default locktime, show the locktime value.
This commit is contained in:
wozz 2014-03-07 15:22:43 -05:00
parent dac2f8b949
commit 378943f94d
1 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,10 @@
<td data-ng-show="tx.time" class="text-muted text-right">{{tx.time * 1000|date:'medium'}}</td> <td data-ng-show="tx.time" class="text-muted text-right">{{tx.time * 1000|date:'medium'}}</td>
<td data-ng-show="!tx.time" class="text-muted text-right">N/A</td> <td data-ng-show="!tx.time" class="text-muted text-right">N/A</td>
</tr> </tr>
<tr data-ng-show="tx.locktime">
<td><strong>LockTime </strong></td>
<td class="text-muted text-right">{{tx.locktime}}</td>
</tr>
</tbody> </tbody>
</table> </table>
</div> </div>