make ent list sort issues first by state, then by ctime

This commit is contained in:
Sebastian Kuzminsky 2025-07-08 16:09:45 -06:00
parent a08b514c34
commit 9933b139d9
2 changed files with 33 additions and 2 deletions

View file

@ -5,7 +5,7 @@ use std::str::FromStr;
#[cfg(feature = "log")]
use log::debug;
#[derive(Clone, Debug, PartialEq, serde::Deserialize)]
#[derive(Clone, Debug, Eq, Hash, PartialEq, serde::Deserialize)]
/// These are the states an issue can be in.
pub enum State {
New,