feat: add online users to skills

This commit is contained in:
hjlarry
2026-01-30 10:00:38 +08:00
parent 869b43a95b
commit cdb1449a96

View File

@ -24,6 +24,7 @@ import {
WorkflowContextProvider,
} from '@/app/components/workflow/context'
import { HeaderShell } from '@/app/components/workflow/header'
import OnlineUsers from '@/app/components/workflow/header/online-users'
import { useStore, useWorkflowStore } from '@/app/components/workflow/store'
import { useTriggerStatusStore } from '@/app/components/workflow/store/trigger-status'
import {
@ -134,6 +135,9 @@ const WorkflowViewContent = ({
<div className="flex items-center gap-2">
{viewPicker}
</div>
<div className="flex items-center gap-2">
<OnlineUsers />
</div>
</div>
</HeaderShell>
)