Skip to content

Commit

Permalink
[ui] fix attachment list not displaying scrollbar but instead
Browse files Browse the repository at this point in the history
overflowing
  • Loading branch information
shawnfunke committed Sep 16, 2022
1 parent 8ee1435 commit 8e231ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class TestResultDetailsTabPreviewerComponent extends React.Component<{},
// the attachments listing and preview itself
return (
<Page className="test-result-details-tab-previewer-tab flex-grow flex-row">
<div className={"attachments " + (this.state.lock ? "attachments-disable" : "")}>
<div className={"attachments flex-row " + (this.state.lock ? "attachments-disable" : "")}>
<ScrollableList
itemProvider={this.state.attachments}
renderRow={this.renderAttachmentRow}
Expand Down

0 comments on commit 8e231ce

Please sign in to comment.