Skip to content

Commit

Permalink
fix: lookup secrets formatting (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benehiko authored Sep 27, 2022
1 parent ade37ad commit 7b61431
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/react-components/ory/helpers/node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,19 @@ export const Node = ({
return node.attributes.text.id === 1050015 ? (
<div
className={gridStyle({ gap: 4, direction: "row" })}
style={{ display: "inline-flex", flexWrap: "wrap", gap: pxToRem(48) }}
style={{
display: "inline-flex",
flexWrap: "wrap",
gap: pxToRem(48),
maxWidth: "fit-content",
alignItems: "center",
}}
data-testid={`node/text/${id}`}
>
<Typography
variant="body1"
data-testid={`node/text/${node.attributes.id}/label`}
style={{ flexBasis: "100%" }}
>
{node.meta.label?.text}
</Typography>
Expand Down

0 comments on commit 7b61431

Please sign in to comment.