Skip to content

Commit

Permalink
feat: show threshold also for non account
Browse files Browse the repository at this point in the history
  • Loading branch information
sschiessl-bcp committed Jul 20, 2023
1 parent 3df021f commit 8c40450
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions app/sections/accounts/account.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,13 +224,16 @@
<th>
<span data-translate="Key"></span>
</th>
<th class="align-right"><span data-translate="Threshold"></span></th>
<th class="align-right"><span data-translate="Weight"></span></th>
</tr>
</thead>
<tbody>
<tr data-ng-repeat="ok in owner_keys">
<td align="left"><font size="-1">{{ok.key}}</font></td>
<td class="align-right"><font size="-1">{{ok.threshold}}</font></td>
<td class="align-right"><font size="-1">{{ok.threshold}}</font></td></tr>
<tr>
<td class="align-right" colspan="2"><font size="-1"><span data-translate="Threshold"></span>: {{account.owner_threshold}}</font></td>
</tr>
</tbody>
</table>

Expand Down Expand Up @@ -267,13 +270,16 @@
<thead>
<tr>
<th><span data-translate="Key"></span></th>
<th class="align-right"><span data-translate="Threshold"></span></th>
<th class="align-right"><span data-translate="Weight"></span></th>
</tr>
</thead>
<tbody>
<tr data-ng-repeat="ak in active_keys">
<td align="left"><font size="-1">{{ak.key}}</font></td>
<td class="align-right"><font size="-1">{{ak.threshold}}</font></td>
<td class="align-right"><font size="-1">{{ak.threshold}}</font></td></tr>
<tr>
<td class="align-right" colspan="2"><font size="-1"><span data-translate="Threshold"></span>: {{account.active_threshold}}</font></td>
</tr>
</tbody>
</table>

Expand Down

0 comments on commit 8c40450

Please sign in to comment.