From f343d9ca2bef47bf2d7a6485644ac869f5152b22 Mon Sep 17 00:00:00 2001 From: "Apple\\Apple" Date: Sun, 8 Jun 2025 14:16:57 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=84=20style(channel):=20unify=20text?= =?UTF-8?q?=20link=20styles=20in=20EditTagModal=20with=20EditChannel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update text link styling in EditTagModal.js to match the consistent design pattern used in EditChannel.js. Changed className from 'text-blue-500 cursor-pointer' to '!text-semi-color-primary cursor-pointer' for template-related action links ("填入模板", "清空重定向", "不更改"). This change ensures: - Visual consistency across channel editing components - Better theme adaptability using Semi Design color variables - Adherence to established design patterns in the codebase Files modified: - web/src/pages/Channel/EditTagModal.js --- web/src/pages/Channel/EditTagModal.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/pages/Channel/EditTagModal.js b/web/src/pages/Channel/EditTagModal.js index 695ed2b4..04089615 100644 --- a/web/src/pages/Channel/EditTagModal.js +++ b/web/src/pages/Channel/EditTagModal.js @@ -412,19 +412,19 @@ const EditTagModal = (props) => { /> handleInputChange('model_mapping', JSON.stringify(MODEL_MAPPING_EXAMPLE, null, 2))} > {t('填入模板')} handleInputChange('model_mapping', JSON.stringify({}, null, 2))} > {t('清空重定向')} handleInputChange('model_mapping', '')} > {t('不更改')}