Merge pull request #3480 from SillyTavern/fix-auto-expand-new-message Fix auto expand on thinking during new message
Signed| @@ -215,6 +215,10 @@ export class ReasoningHandler { | |||
| 215 | } | 215 | } |
| 216 | 216 | ||
| 217 | this.updateDom(messageId); | 217 | this.updateDom(messageId); |
| 218 | |||
| 219 | if (power_user.reasoning.auto_expand && this.state !== ReasoningState.Hidden) { | ||
| 220 | this.messageReasoningDetailsDom.open = true; | ||
| 221 | } | ||
| 218 | } | 222 | } |
| 219 | 223 | ||
| 220 | /** | 224 | /** |