Skip to content

Commit 9fb904d

Browse files
authored
Merge pull request #51 from fccview/develop
fix issue with overflow for jobs
2 parents df6ab87 + b95cd79 commit 9fb904d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/_components/FeatureComponents/Cronjobs/CronJobList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ export const CronJobList = ({ cronJobs, scripts }: CronJobListProps) => {
301301
onNewTaskClick={() => setIsNewCronModalOpen(true)}
302302
/>
303303
) : (
304-
<div className="space-y-3 max-h-[55vh] overflow-y-auto dropdown-overflow-fix">
304+
<div className="space-y-3 max-h-[55vh] min-h-[55vh] overflow-y-auto">
305305
{loadedSettings ? (
306306
filteredJobs.map((job) =>
307307
minimalMode ? (

0 commit comments

Comments
 (0)