Skip to content

Commit

Permalink
Fix width of TreeDetails table in List view.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkw31 committed Nov 1, 2024
1 parent 9ceffbf commit c975d38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/static/wrstat/src/DiskTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,11 @@ const colours = [
// make new state and variable to replace child details in the details field, so that clicking and hovering do different things
<Treetable details={tableDetails} setTreePath={setTreePath} setChildDetails={setChildDetails} />
}
<TreeDetails details={childDetails} style={{ width: treeWidth + "px" }} />
<TreeDetails details={childDetails} style={{ width: "100%" }} />
</div>
</div>
</div>
</>;
};

export default DiskTreeComponent;
export default DiskTreeComponent;

0 comments on commit c975d38

Please sign in to comment.