[PR #5977] fix: prevent modal content cutoff in tauri by removing fixed viewport… #5443

Open
opened 2026-03-17 02:53:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/5977
Author: @VishwaVikas2006
Created: 3/12/2026
Status: 🔄 Open

Base: mainHead: fix/modal-tauri-height


📝 Commits (1)

  • 694f5a5 fix: prevent modal content cutoff in tauri by removing fixed viewport height

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 packages/hoppscotch-common/src/components/collections/documentation/index.vue (+1 -1)

📄 Description

This fixes an issue where the documentation modal content was cut off in Tauri.

Previously the modal body used a fixed height:

This could conflict with the modal container’s own height limits in Tauri, causing the bottom portion of the modal to become inaccessible even when scrolling.

The change replaces the fixed height with:

This allows the content to inherit the modal height and enables proper scrolling without clipping.

Fixes #5938


Summary by cubic

Prevents documentation modal content from being cut off in Tauri by removing the fixed viewport height and enabling scroll. Fixes #5938.

  • Bug Fixes
    • Documentation modal body now uses h-full overflow-auto instead of h-[80vh] overflow-hidden, allowing content to inherit modal height and scroll in Tauri.

Written for commit 694f5a5bfe. Summary will update on new commits.


🔄 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/5977 **Author:** [@VishwaVikas2006](https://github.com/VishwaVikas2006) **Created:** 3/12/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `fix/modal-tauri-height` --- ### 📝 Commits (1) - [`694f5a5`](https://github.com/hoppscotch/hoppscotch/commit/694f5a5bfe0132e8c23ea1c35ebcc8732ce76ad6) fix: prevent modal content cutoff in tauri by removing fixed viewport height ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-common/src/components/collections/documentation/index.vue` (+1 -1) </details> ### 📄 Description This fixes an issue where the documentation modal content was cut off in Tauri. Previously the modal body used a fixed height: <div class="w-full h-[80vh] overflow-hidden"> This could conflict with the modal container’s own height limits in Tauri, causing the bottom portion of the modal to become inaccessible even when scrolling. The change replaces the fixed height with: <div class="w-full h-full overflow-auto"> This allows the content to inherit the modal height and enables proper scrolling without clipping. Fixes #5938 <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Prevents documentation modal content from being cut off in Tauri by removing the fixed viewport height and enabling scroll. Fixes #5938. - **Bug Fixes** - Documentation modal body now uses h-full overflow-auto instead of h-[80vh] overflow-hidden, allowing content to inherit modal height and scroll in Tauri. <sup>Written for commit 694f5a5bfe0132e8c23ea1c35ebcc8732ce76ad6. Summary will update on new commits.</sup> <!-- End of auto-generated description by cubic. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
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#5443
No description provided.