lowercase g in goose (#4832)
This commit is contained in:
@@ -121,7 +121,7 @@ function addThinkingIndicator() {
|
||||
<span></span>
|
||||
<span></span>
|
||||
</div>
|
||||
<span class="thinking-text">Goose is thinking...</span>
|
||||
<span class="thinking-text">goose is thinking...</span>
|
||||
`;
|
||||
messagesContainer.appendChild(thinkingDiv);
|
||||
messagesContainer.scrollTop = messagesContainer.scrollHeight;
|
||||
@@ -477,7 +477,7 @@ async function loadSessionIfExists() {
|
||||
|
||||
// Update page title with session description if available
|
||||
if (sessionData.metadata && sessionData.metadata.description) {
|
||||
document.title = `Goose Chat - ${sessionData.metadata.description}`;
|
||||
document.title = `goose chat - ${sessionData.metadata.description}`;
|
||||
}
|
||||
|
||||
messagesContainer.scrollTop = messagesContainer.scrollHeight;
|
||||
@@ -515,8 +515,8 @@ messageInput.focus();
|
||||
// Update session title
|
||||
function updateSessionTitle() {
|
||||
const titleElement = document.getElementById('session-title');
|
||||
// Just show "Goose Chat" - no need to show session ID
|
||||
titleElement.textContent = 'Goose Chat';
|
||||
// Just show "goose chat" - no need to show session ID
|
||||
titleElement.textContent = 'goose chat';
|
||||
}
|
||||
|
||||
// Update title on load
|
||||
|
||||
Reference in New Issue
Block a user