mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Update wallet navigation * Find matching text color for label bg color * Cleanup * Extract WalletNav component * Move PSBT link to Send and Rescan link to Settings * Update transactions view * Test fixes * Adapt invoices list actions * Show invoice actions only if there are any invoices * Link wallet name and balance to tranactions list * Move wallet related actions from list to settings * Fix main menu z-index Needs a value between fixed and the offcanvas backdrop, see https://getbootstrap.com/docs/5.1/layout/z-index/ * Update receive and send views
10 lines
280 B
C#
10 lines
280 B
C#
namespace BTCPayServer.Components.WalletNav
|
|
{
|
|
public class WalletNavViewModel
|
|
{
|
|
public WalletId WalletId { get; set; }
|
|
public BTCPayNetwork Network { get; set; }
|
|
public string Label { get; set; }
|
|
public string Balance { get; set; }
|
|
}
|
|
}
|