(active bool, version string)
| 865 | } |
| 866 | |
| 867 | func (v *PricingView) renderHeader(active bool, version string) string { |
| 868 | isFocused := active && v.ActiveSection == PricingSectionHeader |
| 869 | return renderNavHeader("Pricing", isFocused, active, version, v.Width) |
| 870 | } |
| 871 | |
| 872 | func (v *PricingView) renderCommand(active bool) string { |
| 873 | cmdActive := active && v.ActiveSection == PricingSectionCommand |
no test coverage detected