Skip to content
Merged

Dev #21

Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e8dbaf1
Change fields to be editable
TheKentuckian Feb 5, 2026
7123385
Remove admin requirement for viewing DnD page
TheKentuckian Feb 5, 2026
5c038fe
Bugfixes
TheKentuckian Feb 17, 2026
7c6d668
Bugfix
TheKentuckian Feb 17, 2026
1b99e1a
Fix LotID lookup and searching
TheKentuckian Mar 4, 2026
eed6e5e
Add app insights logging
TheKentuckian Mar 11, 2026
1c99464
Tweak how we read connection string to match api
TheKentuckian Mar 11, 2026
69fc94e
Delivery receipt generation fixes
TheKentuckian Mar 25, 2026
52085cf
Datetime fixup
TheKentuckian Mar 25, 2026
34a0b04
Refactor device type dict, add human-friendly labels to PDF export
TheKentuckian Mar 26, 2026
0bb86ca
More device type refactoring
TheKentuckian Mar 26, 2026
89654ff
Fix missing smartphone mapping in DnD table
TheKentuckian Mar 26, 2026
b9d2fa0
Fallback device request PDF generation on referee when collection nam…
TheKentuckian Mar 26, 2026
1e5e554
Contact Name field changes
TheKentuckian Mar 31, 2026
e50b71f
Cleanup legacy create request button and logic
TheKentuckian Apr 2, 2026
adb40ed
Add API and web version display to footer
claude Apr 9, 2026
dd19378
Merge pull request #11 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
09fdc03
Add GitHub Actions Docker publish workflow and GHCR deploy script
claude Apr 9, 2026
a73cbb3
Merge pull request #12 from CommunityTechaid/claude/remove-ssh-docker…
TheKentuckian Apr 9, 2026
11493a3
Fix API version display and restore build timestamps
claude Apr 9, 2026
7af77ec
Merge pull request #13 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
f9d82e1
Fix deploy script to pass image digest to dokku git:from-image
claude Apr 9, 2026
48f3add
Use HttpClient instead of Apollo for buildInfo query
claude Apr 9, 2026
8c4ddd8
Merge pull request #14 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
79a2f06
Use native fetch for buildInfo to bypass Angular interceptors
claude Apr 9, 2026
6515086
Merge pull request #15 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
de69980
Merge pull request #16 from CommunityTechaid/claude/remove-ssh-docker…
TheKentuckian Apr 9, 2026
b8aacb7
Fix change detection for fetch-based buildInfo and add diagnostics
claude Apr 9, 2026
bc38d61
Merge pull request #17 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
b78598a
Route GraphQL through nginx proxy instead of hardcoded URLs
claude Apr 9, 2026
38af8f4
Merge pull request #18 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
2949c96
Use runtime API_HOST for buildInfo, revert hardcoded endpoints
claude Apr 9, 2026
10e5205
Make GraphQL endpoint runtime-configurable via GRAPHQL_ENDPOINT env var
claude Apr 9, 2026
0979b0c
Merge pull request #19 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
76f6916
Show version info on hover instead of inline text
claude Apr 9, 2026
58e70c2
Merge pull request #20 from CommunityTechaid/claude/add-graphql-build…
TheKentuckian Apr 9, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix missing smartphone mapping in DnD table
  • Loading branch information
TheKentuckian committed Mar 26, 2026
commit 89654ffcaf24cef0be273975f9b3d8f116981ff5
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,8 @@ export class DistributionsAndDeliveriesIndexComponent {
d.kitIds = {};
if (d.kits && d.kits.length) {
d.kits.forEach(k => {
const t = `${k.type}S`;
const typeMap: Record<string, string> = { 'SMARTPHONE': 'PHONES' };
const t = typeMap[k.type] || `${k.type}S`;
d.types[t] = d.types[t] || 0;
d.types[t]++;
d.kitIds[t] = d.kitIds[t] || [];
Expand Down