Skip to content

Commit ed14140

Browse files
authored
fix(data-modeling): update subtitle and radio button size COMPASS-9551 (#7098)
fix: update export subtitle and add size to radio buttons
1 parent 3015e57 commit ed14140

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/compass-data-modeling/src/components/export-diagram-modal.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const ExportDiagramModal = ({
7777
title="Export data model"
7878
subtitle={
7979
<div>
80-
Export the data modal to JSON format.
80+
Export your data model as either an image or JSON file.
8181
{nbsp}
8282
<Link
8383
href="https://www.mongodb.com/docs/manual/data-modeling//"
@@ -100,6 +100,7 @@ const ExportDiagramModal = ({
100100
value="png"
101101
aria-label="PNG"
102102
onClick={() => onSelectFormat('png')}
103+
size="small"
103104
>
104105
PNG
105106
</Radio>
@@ -111,6 +112,7 @@ const ExportDiagramModal = ({
111112
value="json"
112113
aria-label="JSON"
113114
onClick={() => onSelectFormat('json')}
115+
size="small"
114116
>
115117
JSON
116118
</Radio>

0 commit comments

Comments
 (0)