This commit is contained in:
Sebastian Kuzminsky 2025-07-07 23:45:03 -06:00
parent 4d6e18a9f4
commit 19a99c6b0e
6 changed files with 37 additions and 3 deletions

View file

@ -75,7 +75,6 @@ impl fmt::Display for State {
State::InProgress => "inprogress",
State::Done => "done",
State::WontDo => "wontdo",
};
write!(f, "{fmt_str}")
}
@ -155,6 +154,7 @@ impl Issue {
Ok(crate::comment::Comment {
description: String::from(""), // FIXME
timestamp: chrono::Local::now(),
dir,
})
}