Skip to content

Commit

Permalink
Merge branch 'develop' into fix/5671-handle-error-on-refund-during-ma…
Browse files Browse the repository at this point in the history
…nual-capture
  • Loading branch information
zmaglica authored Dec 13, 2024
2 parents 5af5c4d + aa3203c commit 6e520df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions changelog/update-9910-transaction-id-label
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: fix
Comment: Change ID to uppercase in the 'Transaction ID' column label for consistency with similar unique IDs in the UI.


2 changes: 1 addition & 1 deletion client/transactions/list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const getColumns = (
[
{
key: 'transaction_id',
label: __( 'Transaction Id', 'woocommerce-payments' ),
label: __( 'Transaction ID', 'woocommerce-payments' ),
visible: false,
isLeftAligned: true,
},
Expand Down
2 changes: 1 addition & 1 deletion client/transactions/list/test/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ describe( 'Transactions list', () => {
getByRole( 'button', { name: 'Download' } ).click();

const expected = [
'"Transaction Id"',
'"Transaction ID"',
'"Date / Time (UTC)"',
'Type',
'Channel',
Expand Down

0 comments on commit 6e520df

Please sign in to comment.