File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ const getScript = (isTelemetryEnabled: boolean) => `<script>
156156 for (const todo of data.rawInput.todos) {
157157 const status = todo.status === 'completed' ? '✅' :
158158 todo.status === 'in_progress' ? '🔄' : '⏳';
159- todoHtml += '\\n' + status + ' ' + todo.content + ' <span class="priority-badge ' + todo.priority + '">' + todo.priority + '</span>' ;
159+ todoHtml += '\\n' + status + ' ' + todo.content;
160160 }
161161 contentDiv.innerHTML = todoHtml;
162162 } else {
@@ -715,8 +715,6 @@ const getScript = (isTelemetryEnabled: boolean) => `<script>
715715 function sendMessage() {
716716 const text = messageInput.value.trim();
717717 if (text) {
718- sendStats('Send message');
719-
720718 vscode.postMessage({
721719 type: 'sendMessage',
722720 text: text,
You can’t perform that action at this time.
0 commit comments