diff --git a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx index e5f93dc33cb9..e9a189539bad 100644 --- a/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx +++ b/superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx @@ -428,7 +428,7 @@ const Selector: FC<{ role="tab" > {icon} - {selector} + {t(selector)} ); }; @@ -814,8 +814,9 @@ export default function VizTypeGallery(props: VizTypeGalleryProps) { ))} - {selectedVizMetadata?.description || - t('No description available.')} + {t( + selectedVizMetadata?.description || 'No description available.', + )}