fix: correct template creation condition in BoardDropdown (#529)

This commit is contained in:
Henry
2026-06-30 11:59:43 +01:00
committed by GitHub
parent 82b2b4a8e1
commit 019ecbc364

View File

@@ -89,7 +89,7 @@ export default function BoardDropdown({
const isArchiveActionPending = updateBoard.isPending; const isArchiveActionPending = updateBoard.isPending;
const items = [ const items = [
...(isTemplate && canCreateBoard ...(!isTemplate && canCreateBoard
? [ ? [
{ {
label: t`Make template`, label: t`Make template`,