fix(helpdesk): revert to PBI_LV_Tickets for team query, add error logging

PBI_FP_Tickets (FactPage) fails without a customer filter. Switch back
to PBI_LV_Tickets which works reliably unfiltered. Description and
Company_Contact_Name added to select — BC will return them if available,
otherwise they fall back to empty strings via existing null-coalescing.
Add console.error in JS catch to surface rendering errors.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-05 19:36:58 +02:00
parent 75c96c901a
commit 72d39822bc
2 changed files with 4 additions and 3 deletions

View File

@@ -212,7 +212,8 @@ if (container) {
renderCurrentTab(json.members);
renderPerformanceTab(json.members);
showState('success');
} catch {
} catch (err) {
console.error('[helpdesk-team]', err);
showState('error');
}
}