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 @@ -77,7 +77,7 @@ const ExportDiagramModal = ({
title="Export data model"
subtitle={
<div>
Export the data modal to JSON format.
Export your data model as either an image or JSON file.
{nbsp}
<Link
href="https://www.mongodb.com/docs/manual/data-modeling//"
Expand All @@ -100,6 +100,7 @@ const ExportDiagramModal = ({
value="png"
aria-label="PNG"
onClick={() => onSelectFormat('png')}
size="small"
>
PNG
</Radio>
Expand All @@ -111,6 +112,7 @@ const ExportDiagramModal = ({
value="json"
aria-label="JSON"
onClick={() => onSelectFormat('json')}
size="small"
>
JSON
</Radio>
Expand Down
Loading