From c5a02bc7035c053b4b1c9728858516dae1b53e3b Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Wed, 10 Jan 2024 11:43:33 +0000 Subject: [PATCH] fix: include the time in card's timestamp --- internal/board/board.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/board/board.go b/internal/board/board.go index 7008b40..d6de19d 100644 --- a/internal/board/board.go +++ b/internal/board/board.go @@ -206,7 +206,7 @@ type CardArgs struct { // CreateCard creates a card in the database. func (b *Board) CreateCard(args CardArgs) (int, error) { - timestamp := time.Now().Format(time.DateOnly) + timestamp := time.Now().Format(time.DateTime) statusList, err := b.StatusList() if err != nil {