This is an automated email from the ASF dual-hosted git repository.
sophieyou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new bb5be6cf54a fix(matrixify): Rename Tag from 'Matrixify' to
'Matrixified' (#37402)
bb5be6cf54a is described below
commit bb5be6cf54a6cdfb6fa8ad6c4d84e41478c70472
Author: yousoph <[email protected]>
AuthorDate: Wed Jan 28 15:46:51 2026 -0800
fix(matrixify): Rename Tag from 'Matrixify' to 'Matrixified' (#37402)
Co-authored-by: Claude <[email protected]>
---
.../explore/components/ExploreChartHeader/ExploreChartHeader.test.tsx | 4 ++--
superset-frontend/src/explore/components/ExploreChartHeader/index.jsx | 2 +-
superset-frontend/src/pages/ChartList/ChartList.test.tsx | 4 ++--
superset-frontend/src/pages/ChartList/index.tsx | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
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(<ExploreHeader {...props} />, { useRedux: true });
- const matrixifyTag = await screen.findByText('Matrixify');
+ const matrixifyTag = await screen.findByText('Matrixified');
expect(matrixifyTag).toBeInTheDocument();
});
@@ -408,7 +408,7 @@ describe('ExploreChartHeader', () => {
render(<ExploreHeader {...props} />, { 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) && (
- <Tag name="Matrixify" color="purple" />
+ <Tag name="Matrixified" color="purple" />
)}
{metadataBar}
</div>
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;
`}
>
- <Tag name="Matrixify" color="purple" />
+ <Tag name="Matrixified" color="purple" />
</span>
)}
</>