diff --git a/writer/table.go b/writer/table.go index 429afed..0e65dd7 100644 --- a/writer/table.go +++ b/writer/table.go @@ -41,7 +41,7 @@ func (t TableWriter) Write(writer io.Writer) error { table.Render() // Disable the Output Summary if there are no outputs to display - if len(t.outputChanges) > 0 { + if len(t.outputChanges["add"]) > 0 || len(t.outputChanges["delete"]) > 0 || len(t.outputChanges["update"]) > 0 { tableString = make([][]string, 0, 4) for change, changedOutputs := range t.outputChanges { for _, changedOutput := range changedOutputs {