Skip to content

Commit b6da881

Browse files
author
robot
committed
feat: 优化排版
1 parent 5756351 commit b6da881

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/contentScript.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ function insertButton() {
363363

364364
// const writeSolutionButton = document.createElement("div");
365365
const copyButton = buttons[i].cloneNode(true);
366-
copyButton.innerText = "复制所有内置用例";
366+
copyButton.innerText = "复制用例";
367367
copyButton.style["margin-left"] = "10px";
368368
copyButton.onclick = () => {
369369
const cases = getProviedTestCases();
@@ -375,7 +375,7 @@ function insertButton() {
375375
};
376376
buttons[i].parentElement.prepend(copyButton);
377377
const writeSolutionButton = document.createElement("a");
378-
writeSolutionButton.innerText = "去写题解";
378+
writeSolutionButton.innerText = "写题解";
379379
writeSolutionButton.style["margin-right"] = "20px";
380380
writeSolutionButton.style["line-height"] = "32px";
381381

0 commit comments

Comments
 (0)