Projects Insights page does not scroll #175490
Unanswered
Santina77
asked this question in
Projects and Issues
Replies: 2 comments 1 reply
-
|
Hi @Santina77, Try this! 1. Browser Zoom ResetReset your browser zoom to 100% as scrolling issues often occur at non-standard zoom levels. Windows/Linux: Mac: 2. Keyboard NavigationNavigate the Insights view using keyboard shortcuts:
3. Browser SwitchTry accessing Insights in a different environment:
4. Force Scrolling via Browser Console
document.querySelector('.Insights-container').style.overflow = 'auto'
document.querySelector('.insights-panel').style.overflow = 'auto'document.body.style.overflow = 'auto'5. Alternative Data AccessExport Options
GitHub CLIgh project item-list [project-number]GraphQL APIgh api graphql -f query='
{
node(id: "PROJECT_ID") {
... on ProjectV2 {
items(first: 100) {
nodes {
content {
... on Issue {
title
state
}
}
}
}
}
}
}'6. Disable Browser ExtensionsTemporarily disable browser extensions that might interfere:
Steps:
7. Clear Browser CachePerform a hard refresh to clear cached resources: Windows/Linux: Mac: Full Cache Clear:
Emergency Reporting SolutionsIf the Insights view remains inaccessible, use these alternatives for sprint reporting: Option 1: Manual Screenshots
Option 2: Query Issues DirectlyNavigate to your project's Issues tab and use filters: Option 3: Project Board ViewUse the classic Board or Table views as an alternative:
Option 4: GitHub REST APIcurl -H "Authorization: token YOUR_TOKEN" \
https://api.github.com/repos/OWNER/REPO/issues?state=closed&since=YYYY-MM-DDReport the BugAfter implementing a workaround, please report the issue:
Additional Resources
|
Beta Was this translation helpful? Give feedback.
1 reply
This comment was marked as off-topic.
This comment was marked as off-topic.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Bug
Feature Area
Projects
Body
When selecting Insights from our team's project, we are unable to scroll making the feature unusable at the moment. Today is the last day of our sprint and this is needed for reporting.
Guidelines
Beta Was this translation helpful? Give feedback.
All reactions