Skip to content

Commit

Permalink
Merge pull request #154 from Renumics/fix/shrinking-dataissues-menubar
Browse files Browse the repository at this point in the history
fix flex parameters of dataissues menubar
  • Loading branch information
neindochoh authored Jul 19, 2023
2 parents 2bcfc8a + 4207880 commit 0b0577a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/IssuesWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const IssuesWidget: Widget = () => {

return (
<div tw="flex flex-col w-full h-full">
<div tw="flex items-stretch bg-gray-100 h-6 border-b border-b-gray-400 divide-x divide-gray-400 text-xs overflow-hidden">
<div tw="flex flex-initial h-6 items-stretch bg-gray-100 border-b border-b-gray-400 divide-x divide-gray-400 text-xs">
{
// eslint-disable-next-line jsx-a11y/click-events-have-key-events, jsx-a11y/interactive-supports-focus
<div
Expand Down Expand Up @@ -158,7 +158,7 @@ const IssuesWidget: Widget = () => {
</div>
</div>
</div>
<div tw="flex-grow flex flex-col overflow-auto">
<div tw="flex flex-1 flex-col overflow-auto">
{issues.map((problem, i) => (
<Issue key={i} issue={problem} />
))}
Expand Down

0 comments on commit 0b0577a

Please sign in to comment.