docs(B7): mark editor ref cleanup complete

This commit is contained in:
Saravana Achu Mac 2026-05-04 17:15:47 -07:00
parent 1fd1bf3ce6
commit eb6c1d8f7a
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ Status: ⬜ open · 🟦 in PR · ✅ fixed (commit hash on the right).
| B4 | `TickerHeader` "as of" timestamp uses `new Date()` (always = now). Should use the latest bar timestamp. | 🟡 | ✅ | 311d79c |
| B5 | `QuickStats` reads RSI/EMA only from `botState.symbols[symbol].indicators`. The bot only computes these for symbols it actively tracks → user-searched tickers always show `—`. Need an indicator service or compute from bars client-side. | 🟠 | ✅ | 27b3d1a |
| B6 | `CodeStrategyEditor` "Save" button writes to `localStorage` only, then shows "Saved!". Misleading — no persistence. | 🟠 | ✅ | da79682 |
| B7 | `CodeStrategyEditor` defines `editorRef` but never uses it. | 🟢 | ⬜ | |
| B7 | `CodeStrategyEditor` defines `editorRef` but never uses it. | 🟢 | ✅ | 1fd1bf3 |
| B8 | `VisualRuleBuilder` exposes `onBacktest` prop but `ResearchView` doesn't pass one — backtest button never appears. | 🟡 | ⬜ | |
| B9 | `ResearchView` "Strategies" tab still shows the legacy `MyStrategiesTab`; visual/code-saved strategies don't appear there. | 🟡 | ⬜ | |
| B10 | No 404 / catch-all React Router route — invalid paths render blank. | 🟡 | ⬜ | |

View File

@ -311,7 +311,7 @@ Expected platform result:
errors, preserves local draft behavior only as a draft/recovery mechanism, and
saved code strategies appear where users expect to find them.
- [ ] `B7` Remove or use unused `editorRef`.
- [x] `B7` Remove or use unused `editorRef`. Implementation: `1fd1bf3`.
Acceptance: no dead ref remains, or it powers a concrete behavior such as
formatting/focus/save integration.