mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2025-12-13 13:49:47 +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) {
|
for (const todo of data.rawInput.todos) {
|
||||||
const status = todo.status === 'completed' ? '✅' :
|
const status = todo.status === 'completed' ? '✅' :
|
||||||
todo.status === 'in_progress' ? '🔄' : '⏳';
|
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;
|
contentDiv.innerHTML = todoHtml;
|
||||||
} else {
|
} else {
|
||||||
@@ -715,8 +715,6 @@ const getScript = (isTelemetryEnabled: boolean) => `<script>
|
|||||||
function sendMessage() {
|
function sendMessage() {
|
||||||
const text = messageInput.value.trim();
|
const text = messageInput.value.trim();
|
||||||
if (text) {
|
if (text) {
|
||||||
sendStats('Send message');
|
|
||||||
|
|
||||||
vscode.postMessage({
|
vscode.postMessage({
|
||||||
type: 'sendMessage',
|
type: 'sendMessage',
|
||||||
text: text,
|
text: text,
|
||||||
|
|||||||
Reference in New Issue
Block a user