diff --git a/superset-frontend/src/explore/components/ExploreChartHeader/ExploreChartHeader.test.tsx b/superset-frontend/src/explore/components/ExploreChartHeader/ExploreChartHeader.test.tsx index a1969c99612..fc52386d385 100644 --- a/superset-frontend/src/explore/components/ExploreChartHeader/ExploreChartHeader.test.tsx +++ b/superset-frontend/src/explore/components/ExploreChartHeader/ExploreChartHeader.test.tsx @@ -395,7 +395,7 @@ describe('ExploreChartHeader', () => { }); render(, { useRedux: true }); - const matrixifyTag = await screen.findByText('Matrixify'); + const matrixifyTag = await screen.findByText('Matrixified'); expect(matrixifyTag).toBeInTheDocument(); }); @@ -408,7 +408,7 @@ describe('ExploreChartHeader', () => { render(, { useRedux: true }); await waitFor(() => { - expect(screen.queryByText('Matrixify')).not.toBeInTheDocument(); + expect(screen.queryByText('Matrixified')).not.toBeInTheDocument(); }); }); }); diff --git a/superset-frontend/src/explore/components/ExploreChartHeader/index.jsx b/superset-frontend/src/explore/components/ExploreChartHeader/index.jsx index 857e5032f26..dccc438a187 100644 --- a/superset-frontend/src/explore/components/ExploreChartHeader/index.jsx +++ b/superset-frontend/src/explore/components/ExploreChartHeader/index.jsx @@ -274,7 +274,7 @@ export const ExploreChartHeader = ({ /> ) : null} {formData && isMatrixifyEnabled(formData) && ( - + )} {metadataBar} diff --git a/superset-frontend/src/pages/ChartList/ChartList.test.tsx b/superset-frontend/src/pages/ChartList/ChartList.test.tsx index 107a7e2d022..ebd54457727 100644 --- a/superset-frontend/src/pages/ChartList/ChartList.test.tsx +++ b/superset-frontend/src/pages/ChartList/ChartList.test.tsx @@ -264,7 +264,7 @@ describe('ChartList', () => { // Check that the Matrixify tag is present in this row const matrixifyTag = within(chart0Row as HTMLElement).getByText( - 'Matrixify', + 'Matrixified', ); expect(matrixifyTag).toBeInTheDocument(); @@ -274,7 +274,7 @@ describe('ChartList', () => { // Check that the Matrixify tag is NOT present in this row expect( - within(chart1Row as HTMLElement).queryByText('Matrixify'), + within(chart1Row as HTMLElement).queryByText('Matrixified'), ).not.toBeInTheDocument(); }); diff --git a/superset-frontend/src/pages/ChartList/index.tsx b/superset-frontend/src/pages/ChartList/index.tsx index f0ff7fb5475..560fb82b30f 100644 --- a/superset-frontend/src/pages/ChartList/index.tsx +++ b/superset-frontend/src/pages/ChartList/index.tsx @@ -388,7 +388,7 @@ function ChartList(props: ChartListProps) { margin-left: ${theme.marginXS}px; `} > - + )}