Skip to content

Commit aba7675

Browse files
committed
Fix fontSize
Signed-off-by: Trung Nguyen <[email protected]>
1 parent aabcb59 commit aba7675

File tree

1 file changed

+10
-4
lines changed
  • src/extension/ui/src/components/tile

1 file changed

+10
-4
lines changed

src/extension/ui/src/components/tile/Modal.tsx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,11 @@ const ConfigurationModal = ({
264264
}
265265
color="error"
266266
>
267-
<Typography sx={[tabValue === 1 && { fontWeight: 'bold' }]}>Configuration</Typography>
267+
<Typography
268+
sx={[tabValue === 1 && { fontWeight: 'bold' }]}
269+
>
270+
Configuration
271+
</Typography>
268272
</Badge>
269273
}
270274
/>
@@ -302,12 +306,14 @@ const ConfigurationModal = ({
302306
<Link
303307
onClick={() =>
304308
client.host.openExternal(
305-
`${catalogItem.readme
309+
`${
310+
catalogItem.readme
306311
}#tool-${tool.name.replaceAll(' ', '-')}` || ''
307312
)
308313
}
309314
href="#"
310315
target="_blank"
316+
sx={{ fontSize: 12 }}
311317
>
312318
Documentation
313319
<Launch />
@@ -351,7 +357,7 @@ const ConfigurationModal = ({
351357
const secretEdited =
352358
(secret.assigned &&
353359
localSecrets[secret.name] !==
354-
ASSIGNED_SECRET_PLACEHOLDER) ||
360+
ASSIGNED_SECRET_PLACEHOLDER) ||
355361
(!secret.assigned &&
356362
localSecrets[secret.name] !== '');
357363
return (
@@ -448,7 +454,7 @@ const ConfigurationModal = ({
448454
</>
449455
)}
450456
</DialogContent>
451-
</Dialog >
457+
</Dialog>
452458
);
453459
};
454460

0 commit comments

Comments
 (0)