Skip to content

Commit 8dd0200

Browse files
authored
chore: Update empty transaction table copy (#88331)
Empty table with the message "No transactions found" is a bit confusing when the table says there are 6 transactions for this release. The filter for "Failed transactions" is much smaller than the "Not found" text. This updates the text to indicate there is a filter being applied. ![Screenshot 2025-03-31 at 11 30 46 AM](https://github.com/user-attachments/assets/d56af99e-2e2a-4b8d-b19d-0a5e48ed4c68)
1 parent 2a5c30a commit 8dd0200

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

static/app/components/discover/transactionsTable.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,11 @@ function TransactionsTable(props: Props) {
239239
<PanelTable
240240
data-test-id="transactions-table"
241241
isEmpty={!hasResults}
242-
emptyMessage={t('No transactions found')}
242+
emptyMessage={
243+
eventView.query
244+
? t('No transactions found for this filter.')
245+
: t('No transactions found.')
246+
}
243247
headers={renderHeader()}
244248
isLoading={isLoading}
245249
disablePadding

0 commit comments

Comments
 (0)