lowercase g in goose (#4832)

This commit is contained in:
Angie Jones
2025-09-26 23:44:38 -05:00
committed by GitHub
parent bb1b73d634
commit 2032c7099c
120 changed files with 669 additions and 651 deletions
+3 -3
View File
@@ -3,20 +3,20 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Goose Chat</title>
<title>goose chat</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<div class="container">
<header>
<h1 id="session-title">Goose Chat</h1>
<h1 id="session-title">goose chat</h1>
<div class="status" id="connection-status">Connecting...</div>
</header>
<div class="chat-container">
<div class="messages" id="messages">
<div class="welcome-message">
<h2>Welcome to Goose!</h2>
<h2>Welcome to goose!</h2>
<p>I'm your AI assistant. How can I help you today?</p>
<div class="suggestion-pills">
+4 -4
View File
@@ -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