mirror of https://github.com/tiangolo/fastapi.git
🐛 Fix copy button in custom.js (#14722)
This commit is contained in:
parent
a456e92a21
commit
a96dd013a4
|
|
@ -81,8 +81,14 @@ function setupTermynal() {
|
|||
}
|
||||
}
|
||||
saveBuffer();
|
||||
const inputCommands = useLines
|
||||
.filter(line => line.type === "input")
|
||||
.map(line => line.value)
|
||||
.join("\n");
|
||||
node.textContent = inputCommands;
|
||||
const div = document.createElement("div");
|
||||
node.replaceWith(div);
|
||||
node.style.display = "none";
|
||||
node.after(div);
|
||||
const termynal = new Termynal(div, {
|
||||
lineData: useLines,
|
||||
noInit: true,
|
||||
|
|
|
|||
Loading…
Reference in New Issue