Skip to content

Commit

Permalink
Merge pull request #622 from AlejandroPerez92/fix/sidebar-width
Browse files Browse the repository at this point in the history
  • Loading branch information
PacoVK authored Sep 11, 2023
2 parents 050010a + 5a06499 commit 6e0d154
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions frontend/views/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,10 @@ const Overview = () => {
<Box>
<Drawer
sx={{
width: 380,
width: 402,
flexShrink: 0,
"& .MuiDrawer-paper": {
width: 402,
boxSizing: "border-box",
},
}}
Expand Down Expand Up @@ -219,7 +220,12 @@ const Overview = () => {
<ListItemIcon>
<QueueIcon />
</ListItemIcon>
<ListItemText primary={queue.QueueName} />
<ListItemText primary={queue.QueueName} primaryTypographyProps={{
style: {
whiteSpace: "pre-wrap",
overflowWrap: "break-word",
}
}} />
</ListItemButton>
</ListItem>
))}
Expand Down

0 comments on commit 6e0d154

Please sign in to comment.