diff --git a/.env.example b/.env.example deleted file mode 100644 index f9975b9bd..000000000 --- a/.env.example +++ /dev/null @@ -1,70 +0,0 @@ -# Environment -NODE_ENV=development - -# Ports -PORT=3000 - -# URLs -# These URLs must reference a publicly accessible domain or IP address, not a docker container ID (depending on your compose setup) -PUBLIC_URL=http://localhost:3000 -STORAGE_URL=http://localhost:9000/default # default is the bucket name specified in the STORAGE_BUCKET variable - -# 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_DB=postgres -POSTGRES_USER=postgres -POSTGRES_PASSWORD=postgres - -# Database (Prisma/PostgreSQL) -DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres?schema=public - -# Authentication Secrets -# generated with `openssl rand -base64 64` -ACCESS_TOKEN_SECRET=access_token_secret -REFRESH_TOKEN_SECRET=refresh_token_secret - -# Chrome Browser (for printing) -# generated with `openssl rand -hex 32` -CHROME_PORT=8080 -CHROME_TOKEN=chrome_token -CHROME_URL=ws://localhost:8080 -# Launch puppeteer with flag to ignore https errors -# CHROME_IGNORE_HTTPS_ERRORS=true - -# Mail Server (for e-mails) -# For testing, you can use https://ethereal.email/create -MAIL_FROM=noreply@localhost -# SMTP_URL=smtp://username:password@smtp.ethereal.email:587 - -# Storage -STORAGE_ENDPOINT=localhost -STORAGE_PORT=9000 -STORAGE_REGION=us-east-1 -STORAGE_BUCKET=default -STORAGE_ACCESS_KEY=minioadmin -STORAGE_SECRET_KEY=minioadmin -STORAGE_USE_SSL=false -STORAGE_SKIP_BUCKET_CHECK=false - -# Nx Cloud (Optional) -# NX_CLOUD_ACCESS_TOKEN= - -# Crowdin (Optional) -# CROWDIN_PROJECT_ID= -# CROWDIN_PERSONAL_TOKEN= - -# Feature Flags (Optional) -# DISABLE_SIGNUPS=false -# DISABLE_EMAIL_AUTH=false - -# GitHub (OAuth, Optional) -# GITHUB_CLIENT_ID= -# GITHUB_CLIENT_SECRET= -# GITHUB_CALLBACK_URL=http://localhost:5173/api/auth/github/callback - -# Google (OAuth, Optional) -# GOOGLE_CLIENT_ID= -# GOOGLE_CLIENT_SECRET= -# GOOGLE_CALLBACK_URL=http://localhost:5173/api/auth/google/callback 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(