[PR #3223] fix: request logs not loading on initial page open in Community Editi… #31294

Open
opened 2026-06-13 11:42:49 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/3223
Author: @Adityakk9031
Created: 6/5/2026
Status: 🔄 Open

Base: devHead: #2867


📝 Commits (1)

  • 13b691f fix: 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.

## 📋 Pull Request Information **Original PR:** https://github.com/fosrl/pangolin/pull/3223 **Author:** [@Adityakk9031](https://github.com/Adityakk9031) **Created:** 6/5/2026 **Status:** 🔄 Open **Base:** `dev` ← **Head:** `#2867` --- ### 📝 Commits (1) - [`13b691f`](https://github.com/fosrl/pangolin/commit/13b691fd7d3af4cfe83251a0918b0ee79732c24a) fix: request logs not loading on initial page open in Community Edition (#2867) ### 📊 Changes **1 file changed** (+1 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `src/app/[orgId]/settings/logs/request/page.tsx` (+1 -3) </details> ### 📄 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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-06-13 11:42:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#31294