Fix scroll issue in project priorities list (v2.8.1)
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 23s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 23s
This commit is contained in:
@@ -397,7 +397,7 @@ function AppContent() {
|
||||
|
||||
return (
|
||||
<div className="flex flex-col min-h-screen min-h-dvh">
|
||||
<div className={`flex-1 ${isFullscreenTab ? 'pb-0' : 'pb-20'}`}>
|
||||
<div className={`flex-1 ${isFullscreenTab ? 'pb-0' : 'pb-20'} overflow-y-auto min-h-0`}>
|
||||
<div className={`max-w-7xl mx-auto ${isFullscreenTab ? 'p-0' : 'p-4 md:p-6'}`}>
|
||||
{loadedTabs.current && (
|
||||
<div className={activeTab === 'current' ? 'block' : 'hidden'}>
|
||||
@@ -414,7 +414,7 @@ function AppContent() {
|
||||
)}
|
||||
|
||||
{loadedTabs.priorities && (
|
||||
<div className={activeTab === 'priorities' ? 'block' : 'hidden'}>
|
||||
<div className={activeTab === 'priorities' ? 'block h-full' : 'hidden'}>
|
||||
<ProjectPriorityManager
|
||||
allProjectsData={fullStatisticsData}
|
||||
currentWeekData={currentWeekData}
|
||||
|
||||
Reference in New Issue
Block a user