Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix flex parameters of dataissues menubar #154

Merged
merged 1 commit into from
Jul 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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