fix: include the time in card's timestamp

This commit is contained in:
Dan Anglin 2024-01-10 11:43:33 +00:00
parent aae2d24594
commit c5a02bc703
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -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 {