Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reports: Update Transaction ID column label #9911

Merged
merged 5 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading