Document Replicator batch and tree replication strategies#696
Open
HarshCasper wants to merge 1 commit into
Open
Document Replicator batch and tree replication strategies#696HarshCasper wants to merge 1 commit into
HarshCasper wants to merge 1 commit into
Conversation
Deploying localstack-docs with
|
| Latest commit: |
111eccc
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://c872f37e.localstack-docs.pages.dev |
| Branch Preview URL: | https://doc-260-doc-aws-852-add-grou.localstack-docs.pages.dev |
remotesynth
approved these changes
Jun 8, 2026
quetzalliwrites
requested changes
Jun 8, 2026
Collaborator
There was a problem hiding this comment.
horizontal scroll bar on both mobile and (sometimes) desktop
I really want to hit approve but I just have 1 note...
I was device testing how the Supported Resources table behaves on desktop when unmaximized and on mobile. Both mobile and desktop have horizontal scrolling. (albeit, less noticeable in desktop or nonexistent if you have chrome full screen mode)
The horizontal scrolling happens because the inner content of the expandable accordion is fighting against the strict column layout of the html table.
A couple of ways we could fix this:
- If it's a semantic
<table>, we can make sure the expanded detail<tr>utilizes acolspan="4"so the content flows entirely underneath the columns rather than getting trapped in a single cell. - Alternatively, we could swap the table layout to use CSS Grid. That way, we can easily set the expanded details box to
grid-column: 1 / -1so it spans the full width without forcing a horizontal scroll.
What do you think? @HarshCasper
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.
Fixes DOC-260
Summary
single,batch, andresource_treedata returned by the documentation endpoint (localstack/localstack-pro#7115).TREEexplore strategy via the HTTP API, and how to read the support table.client:loadso the table is interactive.Related