Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/i18n/src/locales/en/core.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"workspace": "Workspace",
"views": "Views",
"analytics": "Analytics",
"work_items": "Work Items",
"work_items": "Work items",
"cycles": "Cycles",
"modules": "Modules",
"intake": "Intake",
Expand Down
2 changes: 1 addition & 1 deletion space/core/components/account/oauth/oauth-options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const OAuthOptions: React.FC = observer(() => {
<GoogleOAuthButton text="Sign in with Google" />
</div>
)}
{config?.is_github_enabled && <GithubOAuthButton text="Sign in with Github" />}
{config?.is_github_enabled && <GithubOAuthButton text="Sign in with GitHub" />}
{config?.is_gitlab_enabled && <GitlabOAuthButton text="Sign in with GitLab" />}
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion web/core/components/account/oauth/oauth-options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const OAuthOptions: React.FC<TOAuthOptionProps> = observer(() => {
<GoogleOAuthButton text="Continue with Google" />
</div>
)}
{config?.is_github_enabled && <GithubOAuthButton text="Continue with Github" />}
{config?.is_github_enabled && <GithubOAuthButton text="Continue with GitHub" />}
{config?.is_gitlab_enabled && <GitlabOAuthButton text="Continue with GitLab" />}
</div>
</>
Expand Down