Claude
This commit is contained in:
14
CLAUDE.md
14
CLAUDE.md
@@ -401,7 +401,12 @@ Both LoTW and DCL return data in ADIF (Amateur Data Interchange Format):
|
|||||||
|
|
||||||
### Recent Commits
|
### Recent Commits
|
||||||
|
|
||||||
- `[uncommitted]`: fix: count QSOs confirmed by either LoTW or DCL in stats
|
- `aeeb75c`: feat: add QSO count display to filter section
|
||||||
|
- Shows count of QSOs matching current filters next to "Filters" heading
|
||||||
|
- Displays "Showing X filtered QSOs" when filters are active
|
||||||
|
- Displays "Showing X total QSOs" when no filters applied
|
||||||
|
- Dynamically updates when filters change
|
||||||
|
- `bee02d1`: fix: count QSOs confirmed by either LoTW or DCL in stats
|
||||||
- QSO stats were only counting LoTW-confirmed QSOs (`lotwQslRstatus === 'Y'`)
|
- QSO stats were only counting LoTW-confirmed QSOs (`lotwQslRstatus === 'Y'`)
|
||||||
- QSOs confirmed only by DCL were excluded from "confirmed" count
|
- QSOs confirmed only by DCL were excluded from "confirmed" count
|
||||||
- Fixed by changing filter to: `q.lotwQslRstatus === 'Y' || q.dclQslRstatus === 'Y'`
|
- Fixed by changing filter to: `q.lotwQslRstatus === 'Y' || q.dclQslRstatus === 'Y'`
|
||||||
@@ -501,6 +506,13 @@ The QSO page (`src/frontend/src/routes/qsos/+page.svelte`) includes advanced fil
|
|||||||
- `qsosAPI.getAll(filters)`: Fetch QSOs with optional filters
|
- `qsosAPI.getAll(filters)`: Fetch QSOs with optional filters
|
||||||
- Filters passed as query parameters: `?band=20m&mode=CW&confirmationType=lotw&search=DL`
|
- Filters passed as query parameters: `?band=20m&mode=CW&confirmationType=lotw&search=DL`
|
||||||
|
|
||||||
|
**QSO Count Display**:
|
||||||
|
- Shows count of QSOs matching current filters next to "Filters" heading
|
||||||
|
- **With filters active**: "Showing **X** filtered QSOs"
|
||||||
|
- **No filters**: "Showing **X** total QSOs"
|
||||||
|
- Dynamically updates when filters are applied or cleared
|
||||||
|
- Uses `pagination.totalCount` from backend API response
|
||||||
|
|
||||||
### DXCC Entity Priority Logic
|
### DXCC Entity Priority Logic
|
||||||
|
|
||||||
When syncing QSOs from multiple confirmation sources, the system follows a priority order for DXCC entity data:
|
When syncing QSOs from multiple confirmation sources, the system follows a priority order for DXCC entity data:
|
||||||
|
|||||||
Reference in New Issue
Block a user