I’ve created a custom renderer with its tester:
import { rankWith, scopeEndsWith } from '@jsonforms/core'
export default rankWith(
3, //increase rank as needed
scopeEndsWith('uiSchema')
)
and it works correctly;
but I cannot figure out how to update this tester to match also other fields (not just the one whose scope ends with ‘uiSchema’, so let’ say for example that I want this custom renderer to be used for fields with scope ending with ‘uiSchema’ AND ‘uiDescription’);