mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-15 07:17:30 +00:00
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:
parent
8f4691584c
commit
07aafec698
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue