fix(account): make contact requests table scrollable on mobile - #23112
Open
cristian-ist wants to merge 1 commit into
Open
fix(account): make contact requests table scrollable on mobile#23112cristian-ist wants to merge 1 commit into
cristian-ist wants to merge 1 commit into
Conversation
The 'My requests' table in Contact management overflowed the viewport on small screens with no way to scroll, so the accept/reject actions in the right-most columns were unreachable on mobile. Wrap the table in a Bootstrap table-responsive container, consistent with other tables in the account module. Closes ovh#20550 Signed-off-by: Cristian Istrate <office@techspot.solutions>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes #20550.
The "My requests" tab in Contact management (
/account/contacts/requests) renders its table with a plain Bootstraptableand no responsive wrapper. On small screens the table overflows the viewport with no way to scroll horizontally, so the right-most columns — including the accept/reject actions — are unreachable on mobile.The neighbouring "My services" tab uses
oui-datagridand scrolls fine; only this legacy table was missing the wrapper.Fix
Wrap the table in a Bootstrap
table-responsivecontainer, which adds horizontal scrolling on small screens. This is the same pattern already used elsewhere in the account module (e.g.user/emails/user-emails.html).Minimal, scoped change — the table markup and logic are untouched.
Steps to reproduce
Type of change