From cd0925d3357d85c96387ce46d67cb7b5ca368d44 Mon Sep 17 00:00:00 2001 From: Mike Moore Date: Fri, 24 May 2024 19:27:01 +0300 Subject: [PATCH] Add spacing between Giropay and P24 icons and source identifier (#8876) Co-authored-by: Timur Karimov --- changelog/fix-8804-source-identifier-spacing | 5 +++++ client/transactions/list/index.tsx | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 changelog/fix-8804-source-identifier-spacing diff --git a/changelog/fix-8804-source-identifier-spacing b/changelog/fix-8804-source-identifier-spacing new file mode 100644 index 00000000000..ed08594f4a9 --- /dev/null +++ b/changelog/fix-8804-source-identifier-spacing @@ -0,0 +1,5 @@ +Significance: patch +Type: fix +Comment: Small visual change to transactions list. + + diff --git a/client/transactions/list/index.tsx b/client/transactions/list/index.tsx index a4b2108f308..d1ff4d2f4f2 100644 --- a/client/transactions/list/index.tsx +++ b/client/transactions/list/index.tsx @@ -103,10 +103,11 @@ const getPaymentSourceDetails = ( txn: Transaction ) => { switch ( txn.source ) { case 'giropay': - return { txn.source_identifier }; + return   { txn.source_identifier }; case 'p24': return ( +    { p24BankList[ txn.source_identifier ] ?? '' } );