diff --git a/widgets/calendar.go b/widgets/calendar.go index f95fa7d..8418eda 100644 --- a/widgets/calendar.go +++ b/widgets/calendar.go @@ -29,7 +29,7 @@ func createCalendar(ctx context.Context, _ terminalapi.Terminal, _ interface{}) if err := widget.Write("┌────────────────────┐\n", text.WriteCellOpts(cell.FgColor(cell.ColorWhite))); err != nil { return err } - if err := widget.Write(fmt.Sprintf("|%-20s|\n", time.Now().Format("January 2006")), text.WriteCellOpts(cell.FgColor(cell.ColorWhite))); err != nil { + if err := widget.Write(fmt.Sprintf("│%-20s│\n", time.Now().Format("January 2006")), text.WriteCellOpts(cell.FgColor(cell.ColorWhite))); err != nil { return err } if err := widget.Write("├──┬──┬──┬──┬──┬──┬──┤\n", text.WriteCellOpts(cell.FgColor(cell.ColorWhite))); err != nil {