Merge pull request #21911 from Biteable/no-nopop-in-plan-show

Fixes #21907
pull/22068/head
Pam Selle 7 years ago committed by GitHub
commit 1666df3668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -83,6 +83,10 @@ func NewPlan(changes *plans.Changes) *Plan {
continue
}
if rc.Action == plans.NoOp {
continue
}
// For now we'll shim this to work with our old types.
// TODO: Update for the new plan types, ideally also switching over to
// a structural diff renderer instead of a flat renderer.

Loading…
Cancel
Save