fix(frontend): wisdom index radar chart - loadCognitiveReport race condition
loadChildren() is async (.then callback) but loadCognitiveReport() was
called immediately after in onShow, before activeChildId was set.
Result: activeChildId was still null → loadCognitiveReport returned
early → cognitiveReport stayed null → radar chart v-if never rendered.
Fix: call loadCognitiveReport() inside loadChildren's .then callback,
after activeChildId is confirmed set (from storage or default to first child).