Compare commits

...

1 Commits

Author SHA1 Message Date
Henry
f18021e560 fix: correct template creation condition in BoardDropdown 2026-06-30 11:59:00 +01:00

View File

@@ -88,7 +88,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`,