We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d272bd7 commit 257344aCopy full SHA for 257344a
app/[locale]/dashboard/[entityType]/[entitySlug]/dataset/[id]/edit/charts/components/ChartsList.tsx
@@ -241,7 +241,7 @@ const ChartsList: React.FC<ChartsListProps> = ({
241
242
const handleSearchChange = (e: string) => {
243
const searchTerm = e.toLowerCase();
244
- const filtered = data?.chartsDetails.filter((row: any) =>
+ const filtered = data?.getChartData.filter((row: any) =>
245
row.name.toLowerCase().includes(searchTerm)
246
);
247
setFilteredRows(filtered || []);
0 commit comments