Skip to content

Commit 655363b

Browse files
committed
fix typo
1 parent f4868e6 commit 655363b

File tree

1 file changed

+6
-2
lines changed
  • app/[locale]/dashboard/[entityType]/[entitySlug]/dataset/[id]/edit/charts/components

1 file changed

+6
-2
lines changed

app/[locale]/dashboard/[entityType]/[entitySlug]/dataset/[id]/edit/charts/components/ChartsList.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ const deleteResourceChart: any = graphql(`
3939
}
4040
`);
4141

42+
43+
44+
45+
4246
const ChartsList: React.FC<ChartsListProps> = ({
4347
setType,
4448
type,
@@ -106,7 +110,7 @@ const ChartsList: React.FC<ChartsListProps> = ({
106110
return [
107111
{
108112
accessorKey: 'name',
109-
header: 'Name of Access Type',
113+
header: 'Name of Chart',
110114
cell: ({ row }: any) => (
111115
<div
112116
style={{ cursor: 'pointer', textDecoration: 'underline' }}
@@ -165,7 +169,7 @@ const ChartsList: React.FC<ChartsListProps> = ({
165169
) : (
166170
<>
167171
<div className=" my-6 flex flex-wrap items-center justify-between gap-3 px-3 py-4">
168-
<Text>Showing Access Types</Text>
172+
<Text>Showing Charts</Text>
169173
<SearchInput
170174
className="w-1/2 "
171175
placeholder="Search in charts"

0 commit comments

Comments
 (0)