1
0
mirror of synced 2026-01-29 12:00:58 -05:00

Merge pull request #27555 from github/repo-sync

Repo sync
This commit is contained in:
docs-bot
2023-08-17 17:31:51 -05:00
committed by GitHub
3 changed files with 3 additions and 2 deletions

View File

@@ -33,6 +33,7 @@ export default function GQLExplorer({ mainContext, graphqlExplorerUrl }: Props)
className="border width-full"
scrolling="no"
src={graphqlExplorerUrl}
title="GitHub GraphQL API"
>
<p>You must have iframes enabled to use this feature.</p>
</iframe>

View File

@@ -19,7 +19,7 @@ export const RepoCard = ({ repo, href }: Props) => {
/>
</div>
<div className="flex-auto">
<h3>{repo.repo}</h3>
<h3 className="wb-break-word">{repo.repo}</h3>
<p className="mt-1 color-fg-muted">{repo.description}</p>
</div>
</a>

View File

@@ -19,7 +19,7 @@ export const UserCard = ({ user, href }: Props) => {
/>
</div>
<div className="flex-auto">
<h3>{user.username}</h3>
<h3 className="wb-break-word">{user.username}</h3>
<p className="mt-1 color-fg-muted">{user.description}</p>
</div>
</a>