diff --git a/.env.example b/.env.example index f9975b9bd..d21a5cda4 100644 --- a/.env.example +++ b/.env.example @@ -12,13 +12,13 @@ STORAGE_URL=http://localhost:9000/default # default is the bucket name specified # Database (Prisma/PostgreSQL) # This can be swapped out to use any other database, like MySQL # Note: This is used only in the compose.yml file -POSTGRES_PORT=5432 +POSTGRES_PORT=5434 POSTGRES_DB=postgres POSTGRES_USER=postgres POSTGRES_PASSWORD=postgres # Database (Prisma/PostgreSQL) -DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres?schema=public +DATABASE_URL=postgresql://postgres:postgres@localhost:5434/postgres?schema=public # Authentication Secrets # generated with `openssl rand -base64 64` diff --git a/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx b/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx index bf301adb0..2e696600e 100644 --- a/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx +++ b/apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx @@ -29,8 +29,10 @@ export const EducationDialog = () => { }); return ( - id="education" form={form} defaultValues={defaultEducation}> -
+ id="education" form={form} defaultValues={defaultEducation} + + > +
{ /> ( @@ -143,6 +146,7 @@ export const EducationDialog = () => { footer={(editor) => ( )} + className="overflow-auto resize-none h-20 max-h-40" onChange={(value) => { field.onChange(value); }} diff --git a/libs/ui/src/components/rich-input.tsx b/libs/ui/src/components/rich-input.tsx index 8ac9fafaf..52e67c2bb 100644 --- a/libs/ui/src/components/rich-input.tsx +++ b/libs/ui/src/components/rich-input.tsx @@ -468,7 +468,7 @@ export const RichInput = forwardRef(