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
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export const CreateNewProjectDialog = ({
<FormControl_Shadcn_>
<Input
id="db-password"
label="Database Password"
label="Database password"
type="password"
placeholder="Type in a strong password"
value={field.value}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const PostgresVersionSelector = ({
form,
type = 'create',
layout = 'horizontal',
label = 'Postgres Version',
label = 'Postgres version',
}: PostgresVersionSelectorProps) => {
const { data: project } = useSelectedProjectQuery()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,14 @@ export const RegionSelector = ({
<>
<p>Select the region closest to your users for the best performance.</p>
{showNonProdFields && (
<p className="text-warning">
Note: Only US (NV), Frankfurt and SG are supported for local/staging projects
</p>
<div className="mt-2 text-warning-600">
<p>Only these regions are supported for local/staging projects:</p>
<ul className="list-disc list-inside mt-1">
<li>East US (North Virginia)</li>
<li>Central EU (Frankfurt)</li>
<li>Southeast Asia (Singapore)</li>
</ul>
</div>
)}
</>
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const SecurityOptions = ({
control={form.control}
render={({ field }) => (
<>
<FormItemLayout className="mt-6" layout={layout} label="Data API Configuration">
<FormItemLayout className="mt-6" layout={layout} label="Data API configuration">
<FormControl_Shadcn_>
<RadioGroupStacked
defaultValue={field.value.toString()}
Expand Down
1 change: 1 addition & 0 deletions apps/studio/components/ui/PasswordStrengthBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const PasswordStrengthBar = ({
>
Generate a password
</span>
.
</p>
</>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ const CreateProject = () => {
<div className="py-2">
<Input
id="dbPass"
label="Database Password"
label="Database password"
type="password"
placeholder="Type in a strong password"
value={dbPass}
Expand Down
12 changes: 6 additions & 6 deletions apps/studio/pages/new/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ const Wizard: NextPageWithLayout = () => {
canCreateProject &&
additionalMonthlySpend > 0 && (
<div className="flex justify-between text-sm">
<span>Additional Costs</span>
<span>Additional costs</span>
<div className="text-brand flex gap-1 items-center font-mono font-medium">
<span>${additionalMonthlySpend}/m</span>
<InfoTooltip side="top" className="max-w-[450px] p-0">
Expand Down Expand Up @@ -735,7 +735,7 @@ const Wizard: NextPageWithLayout = () => {
layout="horizontal"
label={
<div className="flex flex-col gap-y-4">
<span>Compute Size</span>
<span>Compute size</span>

<div className="flex flex-col gap-y-2">
<Link
Expand All @@ -744,7 +744,7 @@ const Wizard: NextPageWithLayout = () => {
href="https://supabase.com/docs/guides/platform/compute-add-ons"
>
<div className="flex items-center space-x-2 opacity-75 hover:opacity-100 transition">
<p className="text-sm m-0">Compute Add-Ons</p>
<p className="text-sm m-0">Compute add-ons</p>
<ExternalLink size={16} strokeWidth={1.5} />
</div>
</Link>
Expand All @@ -754,7 +754,7 @@ const Wizard: NextPageWithLayout = () => {
href="https://supabase.com/docs/guides/platform/manage-your-usage/compute"
>
<div className="flex items-center space-x-2 opacity-75 hover:opacity-100 transition">
<p className="text-sm m-0">Compute Billing</p>
<p className="text-sm m-0">Compute billing</p>
<ExternalLink size={16} strokeWidth={1.5} />
</div>
</Link>
Expand Down Expand Up @@ -845,7 +845,7 @@ const Wizard: NextPageWithLayout = () => {

return (
<FormItemLayout
label="Database Password"
label="Database password"
layout="horizontal"
description={
<>
Expand Down Expand Up @@ -926,7 +926,7 @@ const Wizard: NextPageWithLayout = () => {
<FormItemLayout
label="Custom Postgres version"
layout="horizontal"
description="Specify a custom version of Postgres (Defaults to the latest). This is only applicable for local/staging projects"
description="Specify a custom version of Postgres (defaults to the latest). This is only applicable for local/staging projects."
>
<FormControl_Shadcn_>
<Input_Shadcn_
Expand Down
Loading