mirror of
https://github.com/bknd-io/bknd/
synced 2026-08-04 09:06:01 +00:00
Merge remote-tracking branch 'origin/main' into release/0.12
# Conflicts: # app/src/ui/elements/auth/AuthForm.tsx
This commit is contained in:
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
"type": "module",
|
"type": "module",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"bin": "./dist/cli/index.js",
|
"bin": "./dist/cli/index.js",
|
||||||
"version": "0.11.1",
|
"version": "0.11.2",
|
||||||
"description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.",
|
"description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, React Router, Astro, Cloudflare, Bun, Node, AWS Lambda & more.",
|
||||||
"homepage": "https://bknd.io",
|
"homepage": "https://bknd.io",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -164,6 +164,11 @@ export function DataEntityUpdate({ params }) {
|
|||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</AppShell.SectionHeader>
|
</AppShell.SectionHeader>
|
||||||
|
{$q.isLoading ? (
|
||||||
|
<div className="w-full h-full flex justify-center items-center font-mono opacity-30">
|
||||||
|
Loading...
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
<AppShell.Scrollable>
|
<AppShell.Scrollable>
|
||||||
{error && (
|
{error && (
|
||||||
<div className="flex flex-row dark:bg-red-950 bg-red-100 p-4">
|
<div className="flex flex-row dark:bg-red-950 bg-red-100 p-4">
|
||||||
@@ -181,9 +186,14 @@ export function DataEntityUpdate({ params }) {
|
|||||||
className="flex flex-grow flex-col gap-3 p-3"
|
className="flex flex-grow flex-col gap-3 p-3"
|
||||||
/>
|
/>
|
||||||
{targetRelations.length > 0 ? (
|
{targetRelations.length > 0 ? (
|
||||||
<EntityDetailRelations id={entityId} entity={entity} relations={targetRelations} />
|
<EntityDetailRelations
|
||||||
|
id={entityId}
|
||||||
|
entity={entity}
|
||||||
|
relations={targetRelations}
|
||||||
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
</AppShell.Scrollable>
|
</AppShell.Scrollable>
|
||||||
|
)}
|
||||||
</Fragment>
|
</Fragment>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user