Skip to content

Commit

Permalink
fix: resolve scrolling issue in workflow-log table (#11302)
Browse files Browse the repository at this point in the history
  • Loading branch information
DDDDD12138 authored Dec 3, 2024
1 parent ff2a4a6 commit 1cb5a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/app/components/app/workflow-log/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const Logs: FC<ILogsProps> = ({ appDetail }) => {
<div className='flex flex-col h-full'>
<h1 className='text-text-primary system-xl-semibold'>{t('appLog.workflowTitle')}</h1>
<p className='text-text-tertiary system-sm-regular'>{t('appLog.workflowSubtitle')}</p>
<div className='flex flex-col py-4 flex-1'>
<div className='flex flex-col py-4 flex-1 max-h-[calc(100%-16px)]'>
<Filter queryParams={queryParams} setQueryParams={setQueryParams} />
{/* workflow log */}
{total === undefined
Expand Down

0 comments on commit 1cb5a12

Please sign in to comment.