[Bug]: Copying a text selection in chat replaces the clipboard with the entire session transcript
Ninguém assumiu esta issue ainda.
Avaliação
- Dificuldade
- 3/5
- Tempo estimado
- 1-2 dias
- Facilidade para iniciantes
- 76/100
- Tipo de issue
- Bug
- Clareza
- Claramente especificada
- Status de atividade
- Ativa
- Stack de tecnologia
- javascript
Direção de pesquisa
Comece rastreando o copy listener e as funções ZK() e WK() em resources/app/out/renderer/assets/index-6Mcp5Fcu.js e, em seguida, localize suas contrapartes no código-fonte. Reproduza o caso de uma única linha montada no harness do Chromium headless e verifique se copiar uma seleção parcial preserva somente essa seleção, enquanto a cópia da conversa completa continua funcionando.
Escrita pelo modelo de indexação a partir do texto da issue.
Descrição
GUI version
0.1.35
Operating system
Windows
Reproduction steps
- Open the desktop app and open any chat that contains at least one assistant reply.
- Scroll so that the reply you want to copy is the only message row inside the rendered feed area. This is easiest with a long reply (e.g. one containing large code blocks), or with a short/split window.
- Select a small part of that reply with the mouse.
- Press Ctrl+C (or right-click -> Copy).
- Paste into any text editor.
Observed: the clipboard does not contain the selection. It contains the entire conversation,
serialized as:
User:
Assistant:
<all assistant text of that turn, tool calls stripped>
Selecting a different amount of text makes no difference, and the behavior is deterministic:
restarting the app and resizing the window do not change it once it starts happening.
To confirm the trigger condition, with a selection active run this in DevTools console:
const s = document.getSelection(), rows = document.querySelectorAll('[data-feed-row]');
[rows.length, s.containsNode(rows[0], true), s.containsNode(rows[rows.length-1], true)]
If rows.length is 1 while the session clearly contains many messages, the bug is being triggered.
Expected behavior
The clipboard contains exactly the text I selected, and nothing else.
Actual behavior
The clipboard is silently replaced with a full dump of the conversation in "User: ... Assistant: ..."
format, regardless of how small the selection was. The selected text is never copied.
Screenshots, recordings, or sanitized logs
Root cause found by inspecting the shipped renderer bundle
(resources/app/out/renderer/assets/index-6Mcp5Fcu.js).
The chat feed is a virtualized list, so [data-feed-row] elements only exist for the rows in the
current render window. A global copy listener rewrites the clipboard whenever it believes the
whole conversation is selected:
// is the whole conversation selected?
function ZK(e){
const t = e.ownerDocument.getSelection();
if (!t || t.rangeCount === 0 || t.isCollapsed) return false;
const n = e.querySelectorAll("[data-feed-row]"), r = n[0], a = n[n.length - 1];
return !r || !a ? false : t.containsNode(r, true) && t.containsNode(a, true);
}
// copy hook: replaces the clipboard
const r = a => {
if (a.defaultPrevented || !a.clipboardData || Gk(a.target)) return;
const s = e.current;
if (!Wk(s) || !ZK(s)) return;
const l = WK(t.current ?? []); // serializes ALL messages
l && (a.preventDefault(), a.clipboardData.setData("text/plain", l));
};
window.addEventListener("copy", r);
WK() is the serializer that produces the "User: ..." / "Assistant: ..." text.
The defect: ZK() takes "first row" and "last row" from querySelectorAll, i.e. only the rows the
virtualizer currently has mounted, not the whole conversation. When the render window contains
exactly one [data-feed-row], n[0] === n[n.length - 1], so selecting ANY text inside that single
row satisfies containsNode(first) && containsNode(last), and the clipboard is replaced with the
entire session. WK() uses the full message list, not the DOM, which is why the result is the
whole conversation even though only one row was visible.
Verified in a headless Chromium harness with the same DOM shape:
- 5 rows, selection inside the middle row -> containsNode(first)=false, containsNode(last)=false
- 5 rows, selection inside the last row -> false / true
- 1 row, selection inside it -> true / true (triggers)
Suggested fix: derive the check from the real row count (the list data length) instead of the
mounted DOM, or require the selection to start on the first data row and end on the last one.
Safety check
- I removed credentials and private project information from this report.
- Linguagem predominante
- Shell
- Estrelas
- 80
- Forks
- 2
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Guia de contribuição
Nenhum guia de contribuição indexado para este repositório
Primeiros passos
- Leia a issue inteira e depois o guia de contribuição do projeto.
- Comente na issue dizendo que vai assumir — evita que duas pessoas façam o mesmo trabalho.
- Faça um fork do repositório e trabalhe em uma branch.
- Abra um pull request que referencie o número da issue.
Mais de CommandCodeAI/desktop
-
enhancement
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 68/100
CommandCodeAI/desktop#94 ·
-
enhancement
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 68/100
CommandCodeAI/desktop#66 · 1 comentário · 2 reações ·
-
bug
Dificuldade 3/5 1-2 dias Facilidade para iniciantes 55/100
CommandCodeAI/desktop#100 ·
-
enhancement
Dificuldade 4/5 3-5 dias Facilidade para iniciantes 48/100
CommandCodeAI/desktop#99 ·
-
bug
Dificuldade 3/5 1-2 dias Facilidade para iniciantes 65/100
CommandCodeAI/desktop#97 · 1 comentário ·
Todas as issues de CommandCodeAI/desktop
Issues semelhantes
-
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 68/100
community-scripts/ProxmoxVE#17396 · 1 comentário ·
-
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 68/100
mattpocock/skills#1099 ·
-
Update Vish to 1.1.5 Abertapackage-update
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 78/100
oSoWoSo/vOid_Community_repOsitory#144 · 1 comentário ·
-
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 88/100
-
help wanted new command
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 72/100
tldr-pages/tldr#24151 ·