…e refresh
Implemented efficient event-based dependency evaluation to handle multi-level chains. The issue was in the JavaScript initialization sequence and how Redux evaluates field dependencies on page load. This solution uses native Redux change events and multi-round evaluation to properly restore field visibility for complex dependency chains (A→B→C→D) without performance overhead.
Key improvements:
- Event-based approach using native Redux dependency system
- Multi-round evaluation (max 3 rounds) for deep dependency nesting
- Smart value detection to only trigger on meaningful field values
- Performance optimized to eliminate recursive approach issues
- Handles complex multi-level dependency chains efficiently
- Fully backward compatible with existing functionality
No description provided.