From 367c5d89ccfd177caa0ce8a389d9ebe3612025df Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Sat, 1 Oct 2022 11:50:27 +0100 Subject: [PATCH 1/3] removed capitalize from headlines (#4790) --- .../ee/routing-forms/pages/routing-link/[...appPages].tsx | 2 +- packages/ui/v2/core/Shell.tsx | 2 +- packages/ui/v2/core/layouts/SettingsLayout.tsx | 4 +--- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/app-store/ee/routing-forms/pages/routing-link/[...appPages].tsx b/packages/app-store/ee/routing-forms/pages/routing-link/[...appPages].tsx index 587b1c2927..d8a98d6d67 100644 --- a/packages/app-store/ee/routing-forms/pages/routing-link/[...appPages].tsx +++ b/packages/app-store/ee/routing-forms/pages/routing-link/[...appPages].tsx @@ -109,7 +109,7 @@ function RoutingForm({ form, profile }: inferSSRProps
-

+

{form.name}

{form.description ? ( diff --git a/packages/ui/v2/core/Shell.tsx b/packages/ui/v2/core/Shell.tsx index e14419fa8d..eac8db6908 100644 --- a/packages/ui/v2/core/Shell.tsx +++ b/packages/ui/v2/core/Shell.tsx @@ -769,7 +769,7 @@ export function ShellMain(props: LayoutProps) { {props.HeadingLeftIcon &&
{props.HeadingLeftIcon}
}
{props.heading && ( -

+

{!isLocaleReady ? : props.heading}

)} diff --git a/packages/ui/v2/core/layouts/SettingsLayout.tsx b/packages/ui/v2/core/layouts/SettingsLayout.tsx index a236bc1037..7571a24c8e 100644 --- a/packages/ui/v2/core/layouts/SettingsLayout.tsx +++ b/packages/ui/v2/core/layouts/SettingsLayout.tsx @@ -353,9 +353,7 @@ function ShellHeader() { )}
{meta.title && isLocaleReady ? ( -

- {t(meta.title)} -

+

{t(meta.title)}

) : (
)} From 92a29593aa4a5121beaa4f5367db7fcfcdfc8277 Mon Sep 17 00:00:00 2001 From: Peer Richelsen Date: Sat, 1 Oct 2022 21:47:34 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae4946ea84..eaf01f0f02 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Hacker News License Commits-per-month - Pricing + Pricing Jitsu Tracked Checkly Availability From f3e2cf5075c9147174def251e2dcd06650bc57d4 Mon Sep 17 00:00:00 2001 From: GitStart <1501599+gitstart@users.noreply.github.com> Date: Sat, 1 Oct 2022 18:01:41 -0300 Subject: [PATCH 3/3] Onboarding, input validation error isn't positioned correctly (#4758) Co-authored-by: gitstart Co-authored-by: gitstart Co-authored-by: Nitesh Singh Co-authored-by: Matheus Muniz <87545749+matheusmuniz03@users.noreply.github.com> Co-authored-by: Klinger Matheus <50892465+KlingerMatheus@users.noreply.github.com> Co-authored-by: Eman Co-authored-by: Grace Nshokano Co-authored-by: Olusanya Timothy <48022904+seunexplicit@users.noreply.github.com> Co-authored-by: Thiago Nascimbeni Co-authored-by: Peer Richelsen Co-authored-by: Joe Au-Yeung <65426560+joeauyeung@users.noreply.github.com> Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> --- apps/web/components/getting-started/steps-views/UserProfile.tsx | 2 +- .../web/components/getting-started/steps-views/UserSettings.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/components/getting-started/steps-views/UserProfile.tsx b/apps/web/components/getting-started/steps-views/UserProfile.tsx index 018df639b7..8c6d2382c0 100644 --- a/apps/web/components/getting-started/steps-views/UserProfile.tsx +++ b/apps/web/components/getting-started/steps-views/UserProfile.tsx @@ -149,7 +149,7 @@ const UserProfile = (props: IUserProfile) => { }} /> {errors.bio && ( -

+

{t("required")}

)} diff --git a/apps/web/components/getting-started/steps-views/UserSettings.tsx b/apps/web/components/getting-started/steps-views/UserSettings.tsx index 214060fa99..f55dc32a04 100644 --- a/apps/web/components/getting-started/steps-views/UserSettings.tsx +++ b/apps/web/components/getting-started/steps-views/UserSettings.tsx @@ -85,7 +85,7 @@ const UserSettings = (props: IUserSettingsProps) => { className="w-full rounded-md border border-gray-300 text-sm" /> {errors.name && ( -

+

{t("required")}

)}