mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[PR #5665] [MERGED] fix(common): remove double scrollbar in response pane #5306
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#5306
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
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/hoppscotch/hoppscotch/pull/5665
Author: @preeyaX
Created: 12/5/2025
Status: ✅ Merged
Merged: 12/9/2025
Merged by: @jamesgeorge007
Base:
patch← Head:fix/scroll-bar-issue-5545📝 Commits (3)
2d5f01efix: remove double scrollbar: Changed parent containers from auto to overflow-hidden in: default.vue (lines 7, 19, 25) and PaneLayout.vue (lines 15, 24, 32)92cf4f6merging upstream/main into this branch365dd8fchore: add scroll for primary pane layout📊 Changes
2 files changed (+5 additions, -5 deletions)
View changed files
📝
packages/hoppscotch-common/src/components/app/PaneLayout.vue(+2 -2)📝
packages/hoppscotch-common/src/layouts/default.vue(+3 -3)📄 Description
Closes #5545
This PR attempts to fix the double scrollbar issue — when large responses were rendered in the UI and selected, two scrollbars appeared (one within the response content, and one in the main body). We only want to see the scrollbar in the response section, and not the one in the main body.
What's changed
The fix modified CSS overflow properties in two key layout files:
packages/hoppscotch-common/src/layouts/default.vueChanged 3 parent containers from overflow-auto to overflow-hidden:
packages/hoppscotch-common/src/components/app/PaneLayout.vueChanged 3 parent containers from overflow-auto to overflow-hidden:
Notes to reviewers
Summary by cubic
Removed the double scrollbar when large responses are selected. Only the response pane now scrolls; the main layout no longer shows a second scrollbar.
Written for commit
365dd8fe4c. Summary will update automatically on new commits.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.