-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(useQueries): make sure we don't lose property tracking #8295
Conversation
if we call `combine` with `#this.result`, we don't have a tracked version of it, as tracking happens in useQueries (to avoid tracking internal access)
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 26de921. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 2 targetsSent with 💌 from NxCloud. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8295 +/- ##
===========================================
+ Coverage 45.84% 62.68% +16.84%
===========================================
Files 199 135 -64
Lines 7499 4800 -2699
Branches 1717 1348 -369
===========================================
- Hits 3438 3009 -429
+ Misses 3683 1549 -2134
+ Partials 378 242 -136 |
if we call
combine
with#this.result
, we don't have a tracked version of it, as tracking happens in useQueries (to avoid tracking internal access)