Simplify thinking level display in footer (remove 'Thinking:' prefix)

This commit is contained in:
Mario Zechner
2025-11-20 12:38:55 +01:00
Unverified
parent f914697bed
commit 4852a26a35
+1 -1
View File
@@ -93,7 +93,7 @@ export class FooterComponent {
if (this.state.model?.reasoning) {
const thinkingLevel = this.state.thinkingLevel || "off";
if (thinkingLevel !== "off") {
rightSide = `${modelName} Thinking: ${thinkingLevel}`;
rightSide = `${modelName}${thinkingLevel}`;
}
}