Skip to content

Commit

Permalink
fix: cut of scrolling TaskTemplateListColumn
Browse files Browse the repository at this point in the history
Co-authored-by: Max Schäfer <[email protected]>
Co-authored-by: DasProffi <[email protected]>
  • Loading branch information
3 people authored Jul 25, 2023
1 parent eed1287 commit 6c3570e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/components/TaskTemplateListColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ export const TaskTemplateListColumn = ({
}, [ref.current?.clientHeight])

return (
<div className={tw('flex flex-col overflow-hidden')}>
<div className={tw('flex flex-col overflow-hidden h-full')}>
<div className={tw('flex flex-row overflow-hidden')}>
<Span className={tw('text-2xl font-space font-bold mb-4 flex-1')}>
{translation.template}
</Span>
{onColumnEditClick && <Edit onClick={onColumnEditClick} />}
</div>
<div className={tw('overflow-hidden')} ref={ref}>
<div className={tw('overflow-hidden h-full')} ref={ref}>
<div>
<SimpleBarReact style={{ maxHeight: height }}>
<div className={tw('flex flex-col gap-y-2 pr-3')}>
Expand Down

0 comments on commit 6c3570e

Please sign in to comment.