Skip to content

Commit b453e0b

Browse files
committed
Fix - print UpdatedAt string
1 parent 699fb25 commit b453e0b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cli/dashboard/list.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ func (r listResult) String() string {
8080
for _, dash := range r.dashboards {
8181
row := []interface{}{dash.Name, dash.ID}
8282
row = append(row, strings.Join(dash.Widgets, ", "))
83+
row = append(row, dash.UpdatedAt)
8384
if listFlags.showSharing {
8485
row = append(row, dash.SharedBy)
8586
row = append(row, strings.Join(dash.SharedWith, ", "))

0 commit comments

Comments
 (0)