Merge pull request #3480 from SillyTavern/fix-auto-expand-new-message

Fix auto expand on thinking during new message
This commit is contained in:
Cohee
2025-02-15 22:57:01 +02:00
committed by GitHub

View File

@@ -215,6 +215,10 @@ export class ReasoningHandler {
} }
this.updateDom(messageId); this.updateDom(messageId);
if (power_user.reasoning.auto_expand && this.state !== ReasoningState.Hidden) {
this.messageReasoningDetailsDom.open = true;
}
} }
/** /**