Skip to content

Commit

Permalink
fix(website): add equals to enum members (#9405)
Browse files Browse the repository at this point in the history
  • Loading branch information
suneettipirneni committed Apr 16, 2023
1 parent 09a9fb5 commit e04801b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/website/src/components/model/enum/EnumMember.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export function EnumMember({ member }: { member: ApiEnumMember }) {
<div className="flex flex-col gap-2 md:flex-row md:place-items-center md:-ml-8.5">
<Anchor href={`#${member.displayName}`} />
<NameText name={member.name} />
<h4 className="font-bold">=</h4>
{member.initializerExcerpt ? (
<SignatureText excerpt={member.initializerExcerpt} model={member.getAssociatedModel()!} />
) : null}
Expand Down

1 comment on commit e04801b

@vercel
Copy link

@vercel vercel bot commented on e04801b Apr 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.