diff --git a/apps/admin-web/src/components/CustomArticleTab.vue b/apps/admin-web/src/components/CustomArticleTab.vue index 05db7de..2fdf9e6 100644 --- a/apps/admin-web/src/components/CustomArticleTab.vue +++ b/apps/admin-web/src/components/CustomArticleTab.vue @@ -116,7 +116,7 @@ const deleteMutation = useMutation({ const columns = computed>(() => [ { title: t("custom.article.titleColumn"), dataIndex: "title", key: "title", width: 340 }, { title: t("custom.filters.promptRule"), dataIndex: "prompt_rule_name", key: "prompt_rule_name", width: 160 }, - { title: t("custom.schedule.platform"), dataIndex: "platforms", key: "platforms", width: 180 }, + { title: t("custom.schedule.autoPublishPlatforms"), dataIndex: "auto_publish_platforms", key: "auto_publish_platforms", width: 180 }, { title: t("common.generateStatus"), dataIndex: "generate_status", key: "generate_status", width: 128 }, { title: t("common.publishStatus"), dataIndex: "publish_status", key: "publish_status", width: 128 }, { title: t("common.wordCount"), dataIndex: "word_count", key: "word_count", width: 100 }, @@ -319,8 +319,8 @@ onBeforeUnmount(() => { -