mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
Fix parser extra colon (#43796)
Extra colon in the "Products:" section auto-generated file: <img width="228" height="59" alt="Screenshot 2026-04-20 at 3 07 26 PM" src="https://github.com/user-attachments/assets/687be6ea-71ae-45c7-a1e9-641994ee86ba" /> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Corrected formatting in product list display by removing redundant punctuation. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
parent
a0f60dc7f8
commit
db3b2d34cb
2 changed files with 71 additions and 71 deletions
File diff suppressed because one or more lines are too long
|
|
@ -81,7 +81,7 @@ func generateMarkdown(vex *OpenVEXDocument) (string, error) {
|
|||
}
|
||||
sb.WriteString(fmt.Sprintf("- **Status notes:** %s\n", statusNotes))
|
||||
}
|
||||
sb.WriteString("- **Products:**: ")
|
||||
sb.WriteString("- **Products:** ")
|
||||
var ids []string
|
||||
for _, product := range stmt.Products {
|
||||
ids = append(ids, "`"+product.ID+"`")
|
||||
|
|
|
|||
Loading…
Reference in a new issue