Update unraid-ui/src/forms/renderers.ts

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Eli Bosley
2025-05-23 11:00:19 -04:00
parent db9b8c12b9
commit a5c7b9fdd3

View File

@@ -106,6 +106,7 @@ export const jsonFormsRenderers: JsonFormsRendererRegistryEntry[] = [
// Fallback / Meta
{
renderer: markRaw(withErrorWrapper(MissingRenderer)),
tester: rankWith(3, isControl), // Adjusted rank to ensure it's tested after more specific controls
- tester: rankWith(3, isControl), // Adjusted rank to ensure it's tested after more specific controls
+ tester: rankWith(0, isControl),
},
];