This is an automated email from the ASF dual-hosted git repository.
jli pushed a commit to branch 6.0
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/6.0 by this push:
new a8cf0981fa fix(table): table search input placeholder (#35064)
a8cf0981fa is described below
commit a8cf0981fac9219492f32a73970a2b29eaaaf3ae
Author: SBIN2010 <[email protected]>
AuthorDate: Tue Sep 9 03:55:39 2025 +0300
fix(table): table search input placeholder (#35064)
(cherry picked from commit c5f220a9ff52b7bc7517bb49071498f11ea7913c)
---
superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
index 0f0fd6ad55..dc829c7e2f 100644
--- a/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
+++ b/superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx
@@ -198,7 +198,7 @@ function SearchInput({
{t('Search')}
<Input
aria-label={t('Search %s records', count)}
- placeholder={tn('search.num_records', count)}
+ placeholder={tn('%s record', '%s records...', count, count)}
value={value}
onChange={onChange}
onBlur={onBlur}