Skip to content

In list/table view the last row is clipped and can't be scrolled to #6

@elspear

Description

@elspear

Bug

In list/table view, the last row is clipped at the bottom and can't be scrolled to. Cards view displays all items correctly.

Root Cause

.wx-filemanager is a flex column, but its children don't have min-height: 0. The default min-height: auto prevents the content area from shrinking below its content size, so the Grid expands to its full unscrolled height instead of being constrained and scrolling internally.

Suggested Fix

.wx-filemanager > * {
min-height: 0;
}

Screenshots (from the SVAR File Manager demo)

Cards view — notice the last file is TwoState.css
List view — TwoState.css is cut off and the scrollbar doesn't scroll to the last row

Image Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions