fix(git): update Gitea provider instructions and improve Git providers display

- Enhanced the Gitea provider setup instructions by specifying the navigation path for creating a new OAuth2 application.
- Added a blank line for better readability in the Git providers display component.
This commit is contained in:
Mauricio Siu 2025-03-18 21:50:01 -06:00
parent a7535c6862
commit 4eef65f1b7
2 changed files with 5 additions and 5 deletions

View File

@ -139,7 +139,10 @@ export const AddGiteaProvider = () => {
<ExternalLink className="w-fit text-primary size-4" /> <ExternalLink className="w-fit text-primary size-4" />
</Link> </Link>
</li> </li>
<li>Navigate to Applications</li> <li>
Navigate to Applications {"->"} Create new OAuth2
Application
</li>
<li> <li>
Create a new application with the following details: Create a new application with the following details:
<ul className="list-disc list-inside ml-4"> <ul className="list-disc list-inside ml-4">
@ -148,10 +151,6 @@ export const AddGiteaProvider = () => {
Redirect URI:{" "} Redirect URI:{" "}
<span className="text-primary">{webhookUrl}</span>{" "} <span className="text-primary">{webhookUrl}</span>{" "}
</li> </li>
<li>
Select Permissions - organization: read, user: read,
repository: read/write
</li>
</ul> </ul>
</li> </li>
<li> <li>

View File

@ -207,6 +207,7 @@ export const ShowGitProviders = () => {
</Link> </Link>
</div> </div>
)} )}
{isGithub && haveGithubRequirements && ( {isGithub && haveGithubRequirements && (
<EditGithubProvider <EditGithubProvider
githubId={gitProvider.github?.githubId} githubId={gitProvider.github?.githubId}