Improve Seeker's total number description#542
Conversation
Review Summary by QodoEnhance cycle progress tooltip with clearer item counting description
WalkthroughsDescription• Improved tooltip text for cycle progress metric • Clarified that series/movies are counted as items • Added Sonarr-specific behavior explanation Diagramflowchart LR
A["Cycle Progress Tooltip"] -- "Updated description" --> B["Clarified item counting logic"]
B -- "Added Sonarr context" --> C["Better user understanding"]
File Changes1. code/frontend/src/app/features/seeker-stats/searches-tab/searches-tab.component.html
|
Code Review by Qodo
1.
|
Greptile SummaryThis PR improves the tooltip text for the "Cycle Progress" label in the Seeker Stats searches tab, adding a Sonarr-specific clarification that each series counts as one item regardless of how many seasons were searched.
Confidence Score: 4/5Safe to merge with a minor wording tweak — no functional code is changed. The change is a single tooltip string update with no logic impact. The only concern is that "Series/movies" narrows a generic description in a way that's inaccurate for Lidarr/Readarr instances, but this is cosmetic and does not break any feature. No files require special attention beyond the tooltip wording in searches-tab.component.html. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Instance Card rendered] --> B{Instance Type?}
B -->|Sonarr| C["Tooltip: 'Series/movies...\nFor Sonarr, each series counts as one item'"]
B -->|Radarr| C
B -->|Lidarr| C
B -->|Readarr| C
B -->|Whisparr| C
C --> D["'Series/movies' label\nis inaccurate for\nLidarr / Readarr"]
Reviews (1): Last reviewed commit: "improve Seeker's total number descriptio..." | Re-trigger Greptile |
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
No description provided.