Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ const Selector: FC<{
role="tab"
>
{icon}
{selector}
{t(selector)}
</SelectorLabel>
);
};
Expand Down Expand Up @@ -814,8 +814,9 @@ export default function VizTypeGallery(props: VizTypeGalleryProps) {
))}
</TagsWrapper>
<Description>
{selectedVizMetadata?.description ||
t('No description available.')}
{t(
selectedVizMetadata?.description || 'No description available.',
)}
Comment on lines +817 to +819

This comment was marked as resolved.

</Description>
<SectionTitle
css={css`
Expand Down
Loading