diff --git a/app/src/data/api/DataController.ts b/app/src/data/api/DataController.ts index e0f6c03..bc86a8d 100644 --- a/app/src/data/api/DataController.ts +++ b/app/src/data/api/DataController.ts @@ -344,7 +344,6 @@ export class DataController extends Controller { if (!this.entityExists(entity)) { return this.notFound(c); } - console.log("id", id); const options = c.req.valid("query") as RepoQuery; const result = await this.em.repository(entity).findId(id, options); diff --git a/app/src/ui/routes/data/forms/entity.fields.form.tsx b/app/src/ui/routes/data/forms/entity.fields.form.tsx index b0186a6..a70b787 100644 --- a/app/src/ui/routes/data/forms/entity.fields.form.tsx +++ b/app/src/ui/routes/data/forms/entity.fields.form.tsx @@ -391,7 +391,7 @@ function EntityField({ allowDeselect={false} control={control} size="xs" - className="w-20" + className="w-22" /> ) : ( diff --git a/packages/postgres/package.json b/packages/postgres/package.json index cf8a678..6d77c10 100644 --- a/packages/postgres/package.json +++ b/packages/postgres/package.json @@ -38,10 +38,11 @@ "entry": ["src/index.ts"], "format": ["esm"], "target": "es2022", + "metafile": true, "clean": true, "minify": true, "dts": true, - "external": ["bknd", "pg", "kysely", "kysely-postgres-js"] + "external": ["bknd", "pg", "postgres", "kysely", "kysely-postgres-js"] }, "files": ["dist", "README.md", "!*.map", "!metafile*.json"] }