|
@@ -321,7 +321,11 @@ const buildRejectScoreList = (task: Task) => {
|
|
|
let score = rejectArr[i];
|
|
|
if (aRejectArr[i] === "#") {
|
|
|
arr.push(
|
|
|
- h("span", { style: { fontWeight: "bold", color: "red" } }, score)
|
|
|
+ h(
|
|
|
+ "span",
|
|
|
+ { style: { fontWeight: "bold", color: "red", fontSize: "20px" } },
|
|
|
+ score
|
|
|
+ )
|
|
|
);
|
|
|
} else {
|
|
|
arr.push(h("span", { style: { fontWeight: "bold" } }, score));
|