mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-07-07 22:22:38 +08:00
fix: don't overlap thinking banner over conversation
This commit is contained in:
@@ -286,6 +286,11 @@ function ChatInterface({
|
||||
handlePermissionDecision,
|
||||
}), [pendingPermissionRequests, handlePermissionDecision]);
|
||||
|
||||
// Mirrors ChatComposer's own visibility check so the message pane can
|
||||
// reserve enough bottom space to keep the floating status tab from
|
||||
// overlapping the last message.
|
||||
const hasActivityIndicator = Boolean(sessionActivity && pendingPermissionRequests.length === 0);
|
||||
|
||||
if (!selectedProject) {
|
||||
const selectedProviderLabel =
|
||||
provider === 'cursor'
|
||||
@@ -321,6 +326,7 @@ function ChatInterface({
|
||||
onTouchMove={handleScroll}
|
||||
isLoadingSessionMessages={isLoadingSessionMessages}
|
||||
isProcessing={isProcessing}
|
||||
hasActivityIndicator={hasActivityIndicator}
|
||||
chatMessages={chatMessages}
|
||||
selectedSession={selectedSession}
|
||||
currentSessionId={currentSessionId}
|
||||
|
||||
Reference in New Issue
Block a user