Skip to content

Commit

Permalink
Add word-break to dependency prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Oct 9, 2024
1 parent e78e920 commit dc186f0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,16 @@ function OurPopup({
style={{
display: "grid",
gridTemplateColumns: "1fr 2fr",
gap: "10px 0"
gap: "10px"
}}
>
{Object.entries(deps).map(([id, candidates], i) => (
<>
<Text
variant="text-md/normal"
style={{
alignSelf: "center"
alignSelf: "center",
wordBreak: "break-word"
}}
>
{MoonbaseSettingsStore.tryGetExtensionName(id)}
Expand Down

0 comments on commit dc186f0

Please sign in to comment.