fix(cli): description field in toTaskSchema was set to title instead of description

Copy-paste bug: description was assigned item.title instead of item.description,
causing task descriptions to be lost and replaced with the task title.
This commit is contained in:
nullref 2026-06-14 07:36:05 +02:00
parent 8f4691584c
commit 07aafec698

View file

@ -563,7 +563,7 @@ function toTaskSchema(item: (typeof tasks)[number]) {
type: "logicsrc.task", type: "logicsrc.task",
version: "0.1", version: "0.1",
title: item.title, title: item.title,
description: item.title, description: item.description,
board: item.board, board: item.board,
creator_did: "anthony.coinpay", creator_did: "anthony.coinpay",
status: item.status, status: item.status,