[PR #2996] [CLOSED] [bug] Control+F not working in result from API request #4179

Closed
opened 2026-03-17 01:44:17 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2996
Author: @gitstart
Created: 4/17/2023
Status: Closed

Base: mainHead: HPS-OSS-1


📝 Commits (8)

📊 Changes

15 files changed (+90 additions, -1 deletions)

View changed files

📝 packages/hoppscotch-common/assets/scss/themes.scss (+3 -0)
📝 packages/hoppscotch-common/src/components/graphql/RequestOptions.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/graphql/Response.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/graphql/Sidebar.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/Body.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/CodegenModal.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/Headers.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/Parameters.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/PreRequestScript.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/RawBody.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/Tests.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/http/URLEncodedParams.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/lenses/ResponseBodyRenderer.vue (+6 -0)
📝 packages/hoppscotch-common/src/components/realtime/Communication.vue (+14 -1)
📝 packages/hoppscotch-common/src/helpers/editor/themes/baseTheme.ts (+1 -0)

📄 Description

This PR closes https://github.com/hoppscotch/hoppscotch/issues/2946

Description

This PR fixes an issue where the search or finder gets hidden on page scroll. https://github.com/hoppscotch/hoppscotch/issues/2946

Before

https://www.loom.com/share/2820b97d4f5b420d8019201c4f126ed0

After - Updated

https://www.loom.com/share/355c8d06ab934efc92adf6488ba1d88e

Checks

  • My pull request adheres to the code style of this project
  • My code requires changes to the documentation
  • I have updated the documentation as required
  • All the tests have passed

This code was written and reviewed by GitStart Community. Growing great engineers, one PR at a time.


🔄 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/hoppscotch/hoppscotch/pull/2996 **Author:** [@gitstart](https://github.com/gitstart) **Created:** 4/17/2023 **Status:** ❌ Closed **Base:** `main` ← **Head:** `HPS-OSS-1` --- ### 📝 Commits (8) - [`ca15085`](https://github.com/hoppscotch/hoppscotch/commit/ca150852266ffaf4948a95ce1250a1f6ce3afd6e) fix: make finder in response body visible when scrolling - [`3ef0b20`](https://github.com/hoppscotch/hoppscotch/commit/3ef0b20f39fe8005b5c9bb126decbfac7489ec61) chore: use css variable instead of hard-code value - [`d45e4bb`](https://github.com/hoppscotch/hoppscotch/commit/d45e4bb3926b8f6620a73ce1e030011f3fed493b) chore: restrict offset changes to the json response - [`ccb02cc`](https://github.com/hoppscotch/hoppscotch/commit/ccb02cce90068c1fa9c6770aa99555a1aadb6a3e) chore: make search panel visible on codemirror instances - [`0687966`](https://github.com/hoppscotch/hoppscotch/commit/068796639c6198022e533359f1242020dba11313) chore: use :deep() - [`a82f9e7`](https://github.com/hoppscotch/hoppscotch/commit/a82f9e7328227a42a508a1064b3a9317456f9dc2) chore: updated remaining codemirror instances - [`05c0037`](https://github.com/hoppscotch/hoppscotch/commit/05c00379d59d5b7d6531b173f49197b303382043) Merge commit '522de45a62941c04ca1176091135251ec227ac40' of https://github.com/GitStartHQ/hoppscotch into HPS-OSS-1 - [`d179c82`](https://github.com/hoppscotch/hoppscotch/commit/d179c8263aae42af65aed9b9eb76b17f37000018) Merge branch 'main' into HPS-OSS-1 ### 📊 Changes **15 files changed** (+90 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-common/assets/scss/themes.scss` (+3 -0) 📝 `packages/hoppscotch-common/src/components/graphql/RequestOptions.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/graphql/Response.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/graphql/Sidebar.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/Body.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/CodegenModal.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/Headers.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/Parameters.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/PreRequestScript.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/RawBody.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/Tests.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/http/URLEncodedParams.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/lenses/ResponseBodyRenderer.vue` (+6 -0) 📝 `packages/hoppscotch-common/src/components/realtime/Communication.vue` (+14 -1) 📝 `packages/hoppscotch-common/src/helpers/editor/themes/baseTheme.ts` (+1 -0) </details> ### 📄 Description This PR closes https://github.com/hoppscotch/hoppscotch/issues/2946 #### Description This PR fixes an issue where the `search` or `finder` gets hidden on page scroll. https://github.com/hoppscotch/hoppscotch/issues/2946 #### Before https://www.loom.com/share/2820b97d4f5b420d8019201c4f126ed0 #### After - Updated https://www.loom.com/share/355c8d06ab934efc92adf6488ba1d88e #### Checks - [X] My pull request adheres to the code style of this project - [ ] My code requires changes to the documentation - [ ] I have updated the documentation as required - [X] All the tests have passed --- This code was written and reviewed by GitStart Community. Growing great engineers, one PR at a time. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:44:17 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#4179
No description provided.