Image taken from: Patternfly documentation

Describe the issue. What is the expected and unexpected behavior?
Having expandible aligned to the first column and then shrinking the viewport width to toggle table item arrangement to on top of one another and then expanding expandible results in expandible header (identical to the column header it was aligned to) not having left padding.
Please provide the steps to reproduce. Feel free to link CodeSandbox or another tool.
Is this a bug or enhancement? If this issue is a bug, is this issue blocking you or is there a work-around?
Trivial bug.
What is your product and what release version are you targeting?
RH Insights, Vulnerability
Is there a way to remove the expandible header label and keep the alignment for full-width table, for the time being?
@leSamo thanks for reporting this. Looks like this is a bug. The header text should never display inside of an expandable table row.
For the react dev that works on this, if you compare the core table example to the react table, you'll see that in core, inside of any expandable table rows (tr.pf-c-table__expandable-row), the immediate children cells (th or td) do not have a data-label attribute, since the purpose of the cell is just to create a container for expandable content, and shouldn't be associated with the table column header text of any of the columns.
Most helpful comment
@leSamo thanks for reporting this. Looks like this is a bug. The header text should never display inside of an expandable table row.
For the react dev that works on this, if you compare the core table example to the react table, you'll see that in core, inside of any expandable table rows (
tr.pf-c-table__expandable-row), the immediate children cells (thortd) do not have adata-labelattribute, since the purpose of the cell is just to create a container for expandable content, and shouldn't be associated with the table column header text of any of the columns.