fix: JSON filter syntax in catalog-customization.md

Removed unnecessary braces from JSON filter example.

Signed-off-by: Marley <marleypowell9@gmail.com>
This commit is contained in:
Marley
2025-09-26 08:03:15 +01:00
committed by GitHub
parent fbe70fe74e
commit 68412799e4
@@ -571,10 +571,8 @@ Finally, entity predicates also support value operators that can be used in plac
```json
{
"filter": {
{
"kind": "component",
"spec.type": { "$in": ["service", "website"] }
},
"kind": "component",
"spec.type": { "$in": ["service", "website"] }
}
}
```