|
@@ -123,6 +123,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
|
|
|
autoApprovalEnabled,
|
|
autoApprovalEnabled,
|
|
|
alwaysAllowModeSwitch,
|
|
alwaysAllowModeSwitch,
|
|
|
showAutoApproveMenu, // kilocode_change
|
|
showAutoApproveMenu, // kilocode_change
|
|
|
|
|
+ enableCheckpoints, // kilocode_change
|
|
|
alwaysAllowSubtasks,
|
|
alwaysAllowSubtasks,
|
|
|
alwaysAllowFollowupQuestions,
|
|
alwaysAllowFollowupQuestions,
|
|
|
alwaysAllowUpdateTodoList,
|
|
alwaysAllowUpdateTodoList,
|
|
@@ -1640,6 +1641,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
|
|
|
onSuggestionClick={handleSuggestionClickInRow} // This was already stabilized
|
|
onSuggestionClick={handleSuggestionClickInRow} // This was already stabilized
|
|
|
onBatchFileResponse={handleBatchFileResponse}
|
|
onBatchFileResponse={handleBatchFileResponse}
|
|
|
highlighted={highlightedMessageIndex === index} // kilocode_change: add highlight prop
|
|
highlighted={highlightedMessageIndex === index} // kilocode_change: add highlight prop
|
|
|
|
|
+ enableCheckpoints={enableCheckpoints} // kilocode_change
|
|
|
onFollowUpUnmount={handleFollowUpUnmount}
|
|
onFollowUpUnmount={handleFollowUpUnmount}
|
|
|
isFollowUpAnswered={messageOrGroup.isAnswered === true || messageOrGroup.ts === currentFollowUpTs}
|
|
isFollowUpAnswered={messageOrGroup.isAnswered === true || messageOrGroup.ts === currentFollowUpTs}
|
|
|
editable={
|
|
editable={
|
|
@@ -1673,6 +1675,7 @@ const ChatViewComponent: React.ForwardRefRenderFunction<ChatViewRef, ChatViewPro
|
|
|
handleSuggestionClickInRow,
|
|
handleSuggestionClickInRow,
|
|
|
handleBatchFileResponse,
|
|
handleBatchFileResponse,
|
|
|
highlightedMessageIndex, // kilocode_change: add highlightedMessageIndex
|
|
highlightedMessageIndex, // kilocode_change: add highlightedMessageIndex
|
|
|
|
|
+ enableCheckpoints, // kilocode_change
|
|
|
handleFollowUpUnmount,
|
|
handleFollowUpUnmount,
|
|
|
currentFollowUpTs,
|
|
currentFollowUpTs,
|
|
|
alwaysAllowUpdateTodoList,
|
|
alwaysAllowUpdateTodoList,
|