From 83a1216a20162af5fdc4c30c5f0572d65a773e64 Mon Sep 17 00:00:00 2001 From: hazedav Date: Wed, 3 Aug 2022 11:34:15 -0500 Subject: [PATCH] fix(lql): add line break when no preview found (#880) ALLY-1122 --- cli/cmd/lql_preview.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmd/lql_preview.go b/cli/cmd/lql_preview.go index 270cf902d..1f7309904 100644 --- a/cli/cmd/lql_preview.go +++ b/cli/cmd/lql_preview.go @@ -112,6 +112,6 @@ func previewQuerySource(_ *cobra.Command, args []string) error { } return cli.OutputJSON(response.Data[0]) } - cli.OutputHuman("No results found for datasource") + cli.OutputHuman("No results found for datasource\n") return nil }