mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 04:27:21 +00:00
update
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
# bknd
|
||||
**Feature-rich backend built to run anywhere.**
|
||||

|
||||
|
||||
bknd simplifies backend development by providing powerful tools for data management, workflows, authentication, and media handling—all seamlessly integrated into a developer-friendly platform.
|
||||
|
||||
|
||||
BIN
app/src/ui/assets/poster.png
Normal file
BIN
app/src/ui/assets/poster.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 162 KiB |
@@ -188,7 +188,7 @@ export function Canvas({
|
||||
>
|
||||
{backgroundStyle === "lines" && (
|
||||
<Background
|
||||
color={theme === "light" ? "rgba(0,0,0,.1)" : "rgba(255,255,255,.1)"}
|
||||
color={theme === "light" ? "rgba(0,0,0,.05)" : "rgba(255,255,255,.1)"}
|
||||
gap={[50, 50]}
|
||||
variant={BackgroundVariant.Lines}
|
||||
/>
|
||||
|
||||
@@ -229,7 +229,11 @@ export const CellValue = ({ value, property }) => {
|
||||
}
|
||||
|
||||
if (value !== null && typeof value !== "undefined") {
|
||||
return <span className={twMerge("line-clamp-2", value_mono && "font-mono")}>{value}</span>;
|
||||
return (
|
||||
<span className={twMerge("line-clamp-2", value_mono && "font-mono break-all")}>
|
||||
{value}
|
||||
</span>
|
||||
);
|
||||
}
|
||||
|
||||
return <span className="opacity-10 font-mono">null</span>;
|
||||
|
||||
@@ -11,7 +11,7 @@ registries.media.add("local", {
|
||||
|
||||
const connection = new LibsqlConnection(
|
||||
createClient({
|
||||
url: "file:.db/test.db"
|
||||
url: "file:.db/show.db"
|
||||
})
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user