fix: GitHub casing across the platform (#6193)
This commit is contained in:
parent
54f828cbfa
commit
77239ebcd4
5 changed files with 7 additions and 7 deletions
|
|
@ -44,7 +44,7 @@ const InstanceGithubAuthenticationPage = observer(() => {
|
||||||
loading: "Saving Configuration...",
|
loading: "Saving Configuration...",
|
||||||
success: {
|
success: {
|
||||||
title: "Configuration saved",
|
title: "Configuration saved",
|
||||||
message: () => `Github authentication is now ${value ? "active" : "disabled"}.`,
|
message: () => `GitHub authentication is now ${value ? "active" : "disabled"}.`,
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
title: "Error",
|
title: "Error",
|
||||||
|
|
@ -67,8 +67,8 @@ const InstanceGithubAuthenticationPage = observer(() => {
|
||||||
<div className="relative container mx-auto w-full h-full p-4 py-4 space-y-6 flex flex-col">
|
<div className="relative container mx-auto w-full h-full p-4 py-4 space-y-6 flex flex-col">
|
||||||
<div className="border-b border-custom-border-100 mx-4 py-4 space-y-1 flex-shrink-0">
|
<div className="border-b border-custom-border-100 mx-4 py-4 space-y-1 flex-shrink-0">
|
||||||
<AuthenticationMethodCard
|
<AuthenticationMethodCard
|
||||||
name="Github"
|
name="GitHub"
|
||||||
description="Allow members to login or sign up to plane with their Github accounts."
|
description="Allow members to login or sign up to plane with their GitHub accounts."
|
||||||
icon={
|
icon={
|
||||||
<Image
|
<Image
|
||||||
src={resolveGeneralTheme(resolvedTheme) === "dark" ? githubDarkModeImage : githubLightModeImage}
|
src={resolveGeneralTheme(resolvedTheme) === "dark" ? githubDarkModeImage : githubLightModeImage}
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ export const InstanceHeader: FC = observer(() => {
|
||||||
case "google":
|
case "google":
|
||||||
return "Google";
|
return "Google";
|
||||||
case "github":
|
case "github":
|
||||||
return "Github";
|
return "GitHub";
|
||||||
case "gitlab":
|
case "gitlab":
|
||||||
return "GitLab";
|
return "GitLab";
|
||||||
case "workspace":
|
case "workspace":
|
||||||
|
|
|
||||||
2
app.json
2
app.json
|
|
@ -70,7 +70,7 @@
|
||||||
"value": ""
|
"value": ""
|
||||||
},
|
},
|
||||||
"GITHUB_CLIENT_SECRET": {
|
"GITHUB_CLIENT_SECRET": {
|
||||||
"description": "Github Client Secret",
|
"description": "GitHub Client Secret",
|
||||||
"value": ""
|
"value": ""
|
||||||
},
|
},
|
||||||
"NEXT_PUBLIC_API_BASE_URL": {
|
"NEXT_PUBLIC_API_BASE_URL": {
|
||||||
|
|
|
||||||
|
|
@ -168,7 +168,7 @@ export const GithubImporterRoot: React.FC = () => {
|
||||||
<div className="space-y-4 rounded-[10px] border border-custom-border-200 bg-custom-background-100 p-4">
|
<div className="space-y-4 rounded-[10px] border border-custom-border-200 bg-custom-background-100 p-4">
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
<div className="h-10 w-10 flex-shrink-0">
|
<div className="h-10 w-10 flex-shrink-0">
|
||||||
<Image src={GithubLogo} alt="GithubLogo" />
|
<Image src={GithubLogo} alt="GitHubLogo" />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex h-full w-full items-center justify-center">
|
<div className="flex h-full w-full items-center justify-center">
|
||||||
{integrationWorkflowData.map((integration, index) => (
|
{integrationWorkflowData.map((integration, index) => (
|
||||||
|
|
|
||||||
|
|
@ -206,7 +206,7 @@ export const PRODUCT_TOUR_COMPLETED = "Product tour completed";
|
||||||
export const PRODUCT_TOUR_SKIPPED = "Product tour skipped";
|
export const PRODUCT_TOUR_SKIPPED = "Product tour skipped";
|
||||||
// Dashboard Events
|
// Dashboard Events
|
||||||
export const CHANGELOG_REDIRECTED = "Changelog redirected";
|
export const CHANGELOG_REDIRECTED = "Changelog redirected";
|
||||||
export const GITHUB_REDIRECTED = "Github redirected";
|
export const GITHUB_REDIRECTED = "GitHub redirected";
|
||||||
// Sidebar Events
|
// Sidebar Events
|
||||||
export const SIDEBAR_CLICKED = "Sidenav clicked";
|
export const SIDEBAR_CLICKED = "Sidenav clicked";
|
||||||
// Global View Events
|
// Global View Events
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue