Both "Lowband NR 4Rx" and "Lowband LTE 4Rx" consider EN-DC combos but the "Log misses ..." text is not fully aligned to that for LTE case.
I would recommend to add it: "Log misses EN-DC and LTE-CA capabilities."
addSupportRow(hasLteCaData||hasEndc,foundLte4Rx,[...lte4RxBands].sort((a,b)=>a-b).join(', '),"No lowband LTE 4Rx support","Lowband LTE 4Rx support","Log misses LTE-CA capabilities.");addSupportRow(hasEndc||hasNrca,foundNr4Rx,[...nr4RxBands].sort((a,b)=>a-b).map(band=>`n${band}`).join(', '),"No lowband NR 4Rx support","Lowband NR 4Rx support","Log misses EN-DC and NR-CA capabilities.");
Minor issue on "Lowband LTE 4Rx".
Both "Lowband NR 4Rx" and "Lowband LTE 4Rx" consider EN-DC combos but the "Log misses ..." text is not fully aligned to that for LTE case.
I would recommend to add it: "Log misses EN-DC and LTE-CA capabilities."
```js
addSupportRow(hasLteCaData || hasEndc, foundLte4Rx, [...lte4RxBands].sort((a, b) => a - b).join(', '), "No lowband LTE 4Rx support", "Lowband LTE 4Rx support", "Log misses LTE-CA capabilities.");
addSupportRow(hasEndc || hasNrca, foundNr4Rx, [...nr4RxBands].sort((a, b) => a - b).map(band => `n${band}`).join(', '), "No lowband NR 4Rx support", "Lowband NR 4Rx support", "Log misses EN-DC and NR-CA capabilities.");
```
You modified it to Log misses EN-DC and NR-CA capabilities instead of "Log misses EN-DC and LTE-CA capabilities."
This is an LTE related feature, not NR. 😄
You modified it to `Log misses EN-DC and NR-CA capabilities` instead of `"Log misses EN-DC and LTE-CA capabilities."`
This is an LTE related feature, not NR. 😄
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Minor issue on "Lowband LTE 4Rx".
Both "Lowband NR 4Rx" and "Lowband LTE 4Rx" consider EN-DC combos but the "Log misses ..." text is not fully aligned to that for LTE case.
I would recommend to add it: "Log misses EN-DC and LTE-CA capabilities."
Fixed in
c805003Thank you!
You modified it to
Log misses EN-DC and NR-CA capabilitiesinstead of"Log misses EN-DC and LTE-CA capabilities."This is an LTE related feature, not NR. 😄
@rtommy Whoops, fixed now!