chore: simplify export action labels

This commit is contained in:
2026-05-19 17:39:57 +08:00
parent 303efcdc8f
commit 75294ca8c7
10 changed files with 106 additions and 140 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ export function promptForAuthorIds(document: Document): Promise<string | null> {
applyDialogStyles(dialog);
const title = document.createElement("h2");
title.textContent = "按星图ID导出画像CSV";
title.textContent = "按星图ID导出";
applyTitleStyles(title);
const textarea = document.createElement("textarea");
@@ -17,7 +17,7 @@ export function promptForAuthorIds(document: Document): Promise<string | null> {
applyTextareaStyles(textarea);
const hint = document.createElement("p");
hint.textContent = "粘贴客户提供的达人星图ID,确认后将批量导出画像和商业能力数据。";
hint.textContent = "粘贴客户提供的达人星图ID,确认后将批量导出达人数据。";
applyHintStyles(hint);
const actions = document.createElement("div");