mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-15 21:31:24 -05:00
[PR #3223] fix: request logs not loading on initial page open in Community Editi… #31294
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/fosrl/pangolin/pull/3223
Author: @Adityakk9031
Created: 6/5/2026
Status: 🔄 Open
Base:
dev← Head:#2867📝 Commits (1)
13b691ffix: request logs not loading on initial page open in Community Edition (#2867)📊 Changes
1 file changed (+1 additions, -3 deletions)
View changed files
📝
src/app/[orgId]/settings/logs/request/page.tsx(+1 -3)📄 Description
Fixes #2867 — Request Logs page shows "No results found" on initial load in Community Edition (OSS build), requiring a manual Refresh click to populate data.
Root cause: The useEffect responsible for fetching logs on mount had an early-return guard if (build === "oss") return, which completely skipped the initial data fetch on CE. EE was unaffected because the guard only triggered for the oss build.
Change: Removed the build === "oss" guard from the mount effect in src/app/[orgId]/settings/logs/request/page.tsx and cleaned up the now-unused build import. The fetch now runs on all builds, consistent with EE behaviour.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.