From b8c52d10758d2d63e9a658dd8a078269b54a776e Mon Sep 17 00:00:00 2001 From: Nitish Tiwari Date: Thu, 24 Aug 2023 18:27:52 +0530 Subject: [PATCH] Fix list stream output --- cmd/stream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/stream.go b/cmd/stream.go index 4c1becb..1dbaaae 100644 --- a/cmd/stream.go +++ b/cmd/stream.go @@ -275,6 +275,7 @@ var ListStreamCmd = &cobra.Command{ for _, item := range items { item := StreamListItem{item["name"]} + fmt.Print("• ") fmt.Println(item.Render()) } fmt.Println()