mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2025-12-10 14:59:52 +00:00
Remove priority
This commit is contained in:
@@ -156,7 +156,7 @@ const getScript = (isTelemetryEnabled: boolean) => `<script>
|
||||
for (const todo of data.rawInput.todos) {
|
||||
const status = todo.status === 'completed' ? '✅' :
|
||||
todo.status === 'in_progress' ? '🔄' : '⏳';
|
||||
todoHtml += '\\n' + status + ' ' + todo.content + ' <span class="priority-badge ' + todo.priority + '">' + todo.priority + '</span>';
|
||||
todoHtml += '\\n' + status + ' ' + todo.content;
|
||||
}
|
||||
contentDiv.innerHTML = todoHtml;
|
||||
} else {
|
||||
@@ -715,8 +715,6 @@ const getScript = (isTelemetryEnabled: boolean) => `<script>
|
||||
function sendMessage() {
|
||||
const text = messageInput.value.trim();
|
||||
if (text) {
|
||||
sendStats('Send message');
|
||||
|
||||
vscode.postMessage({
|
||||
type: 'sendMessage',
|
||||
text: text,
|
||||
|
||||
Reference in New Issue
Block a user