feat(note): show full created date format on selected notes

This commit is contained in:
Fernando López Guevara
2025-07-31 18:09:55 -03:00
parent a64ff3b630
commit 26ece3bc05
5 changed files with 51 additions and 16 deletions

View File

@@ -22,11 +22,14 @@ bitflags! {
/// Is the content truncated? If the length is over a certain size it
/// will end with a ... and a "Show more" button.
const Truncate = 1 << 11;
/// Show note's client in the note header
/// Show note's client in the note content
const ShowNoteClientTop = 1 << 12;
const ShowNoteClientBottom = 1 << 13;
const RepliesNewestFirst = 1 << 14;
// Show note's created at note bottom
const ShowCreatedAtBottom = 1 << 15;
}
}