Add labels for recent txs dashboard widget (#4831)

* Add labels for recent txs dashboard widget

It is not with the rich data for now, but a good start.

* Turn labels into links

* Add rich info to dashboard labels

* Use truncate-center component for recent transactions

---------

Co-authored-by: Dennis Reimann <mail@dennisreimann.de>
This commit is contained in:
Andrew Camilleri
2023-03-30 19:54:11 +02:00
committed by GitHub
parent 98d8ef8e1a
commit eece001376
7 changed files with 198 additions and 140 deletions

View File

@@ -1,4 +1,6 @@
using System;
using System.Collections.Generic;
using BTCPayServer.Models.WalletViewModels;
namespace BTCPayServer.Components.StoreRecentTransactions;
@@ -11,4 +13,5 @@ public class StoreRecentTransactionViewModel
public bool IsConfirmed { get; set; }
public string Link { get; set; }
public DateTimeOffset Timestamp { get; set; }
public IEnumerable<TransactionTagModel> Labels { get; set; }
}