File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
apps/sim/app/workspace/[workspaceId]/knowledge/[id]/components/connectors-section Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -306,13 +306,13 @@ function ConnectorCard({
306306 { Icon && < Icon className = 'h-5 w-5 flex-shrink-0' /> }
307307 < div className = 'flex flex-col gap-0.5' >
308308 < div className = 'flex items-center gap-2' >
309- < span className = 'font-medium text-[var(--text-primary)] text-small' >
309+ < span className = 'flex items-center gap-1.5 font-medium text-[var(--text-primary)] text-small' >
310310 { connectorDef ?. name || connector . connectorType }
311+ { ( syncCooldown || connector . status === 'syncing' ) && (
312+ < Loader2 className = 'h-3 w-3 animate-spin text-[var(--text-muted)]' />
313+ ) }
311314 </ span >
312315 < Badge variant = { statusConfig . variant } className = 'text-micro' >
313- { connector . status === 'syncing' && (
314- < Loader2 className = 'mr-1 h-3 w-3 animate-spin' />
315- ) }
316316 { statusConfig . label }
317317 </ Badge >
318318 </ div >
You can’t perform that action at this time.
0 commit comments