From 6c3dbaefd31a5309ee17057635daef8bb2c661bb Mon Sep 17 00:00:00 2001 From: Henry <30578846+hjball@users.noreply.github.com> Date: Sun, 30 Nov 2025 22:13:44 +0000 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f37780c8..91fe3c5a 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ See our [roadmap](https://kan.bn/kan/roadmap) for upcoming features. ## Screenshot 👁️ -hero-dark +hero-dark ## Made With 🛠️ @@ -170,7 +170,7 @@ pnpm dev | `NEXT_PUBLIC_STORAGE_URL` | Storage service URL | For file uploads | `https://storage.kanbn.com` | | `NEXT_PUBLIC_STORAGE_DOMAIN` | Storage domain name | For file uploads | `kanbn.com` | | `NEXT_PUBLIC_AVATAR_BUCKET_NAME` | S3 bucket name for avatars | For file uploads | `avatars` | -| `NEXT_PUBLIC_ATTATCHMENTS_BUCKET_NAME` | S3 bucket name for attatchments | For file uploads | `attatchments` | +| `NEXT_PUBLIC_ATTACHMENTS_BUCKET_NAME` | S3 bucket name for attatchments | For file uploads | `attatchments` | | `NEXT_PUBLIC_ALLOW_CREDENTIALS` | Allow email & password login | For authentication | `true` | | `NEXT_PUBLIC_DISABLE_SIGN_UP` | Disable sign up | For authentication | `false` | | `NEXT_PUBLIC_WHITE_LABEL_HIDE_POWERED_BY` | Hide “Powered by kan.bn” on public boards (self-host) | For white labelling | `true` | From d3c8cbd6c032eef800f06d41178c24c4f5682710 Mon Sep 17 00:00:00 2001 From: Henry <30578846+hjball@users.noreply.github.com> Date: Sun, 30 Nov 2025 22:32:59 +0000 Subject: [PATCH 2/2] fix: persist filters when opening card modal (#261) --- apps/web/src/views/public/board/CardModal.tsx | 25 ++++----- apps/web/src/views/public/board/index.tsx | 54 +++++++++++-------- 2 files changed, 45 insertions(+), 34 deletions(-) diff --git a/apps/web/src/views/public/board/CardModal.tsx b/apps/web/src/views/public/board/CardModal.tsx index b5cf1902..82584f33 100644 --- a/apps/web/src/views/public/board/CardModal.tsx +++ b/apps/web/src/views/public/board/CardModal.tsx @@ -67,22 +67,23 @@ export function CardModal({
- {list.cards.map((card) => ( - { - openModal("CARD"); - }} - > - - - ))} + {list.cards.map((card) => { + return ( + { + openModal("CARD"); + }} + > + + + ); + })}
))}