Skip to content

Commit e9e5721

Browse files
authored
improvement: HITL, subblocks, general (#2633)
* improvement: knowledge tags subblock, start subblock * improvement: terminal height, subblocks * improvement: general settings, HITL
1 parent a08d86d commit e9e5721

File tree

13 files changed

+839
-982
lines changed

13 files changed

+839
-982
lines changed

apps/sim/app/_shell/providers/theme-provider.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
2121
pathname.startsWith('/careers') ||
2222
pathname.startsWith('/changelog') ||
2323
pathname.startsWith('/chat') ||
24-
pathname.startsWith('/studio')
24+
pathname.startsWith('/studio') ||
25+
pathname.startsWith('/resume')
2526

2627
return (
2728
<NextThemesProvider
2829
attribute='class'
29-
defaultTheme='dark'
30+
defaultTheme='system'
3031
enableSystem
3132
disableTransitionOnChange
3233
storageKey='sim-theme'

apps/sim/app/_styles/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
--panel-width: 260px;
1212
--toolbar-triggers-height: 300px;
1313
--editor-connections-height: 200px;
14-
--terminal-height: 196px;
14+
--terminal-height: 155px;
1515
}
1616

1717
.sidebar-container {

apps/sim/app/resume/[workflowId]/[executionId]/resume-page-client.tsx

Lines changed: 270 additions & 331 deletions
Large diffs are not rendered by default.

apps/sim/app/workspace/[workspaceId]/logs/logs.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client'
22

33
import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
4-
import { AlertCircle, Loader2 } from 'lucide-react'
4+
import { Loader2 } from 'lucide-react'
55
import { useParams } from 'next/navigation'
66
import { cn } from '@/lib/core/utils/cn'
77
import { getStartDateFromTimeRange } from '@/lib/logs/filters'
@@ -424,8 +424,7 @@ export default function Logs() {
424424
</div>
425425
) : logsQuery.isError ? (
426426
<div className='flex h-full items-center justify-center'>
427-
<div className='flex items-center gap-[8px] text-[var(--text-error)]'>
428-
<AlertCircle className='h-[16px] w-[16px]' />
427+
<div className='text-[var(--text-error)]'>
429428
<span className='text-[13px]'>
430429
Error: {logsQuery.error?.message || 'Failed to load logs'}
431430
</span>

0 commit comments

Comments
 (0)