Various UI improvements #43
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "ui/misc"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Found some oversights with the balances. The rest looks ok to me.
@ -6,0 +8,4 @@
<div class="md:col-span-4 mt-4 md:mt-0">
<p class="font-mono md:text-right p-4 bg-gray-50 shadow rounded-lg overflow-hidden">
<% if @balance %>
<span class="text-xl">48590<%= @balance %> sats</span><br>
There is a hardcoded number in front of the actual balance.
@ -6,0 +11,4 @@
<span class="text-xl">48590<%= @balance %> sats</span><br>
<span class="text-sm text-gray-500">Available balance</span>
<% else %>
<span class="text-xl">n/a<%= @balance %> sats</span><br>
Looks like a copy/paste error. The
<%= @balance %>
should be removed.