feat: change button name (#11840)

This commit is contained in:
CityFun
2026-02-09 13:13:03 +00:00
committed by GitHub
parent 46b8d3bd80
commit 2aa89699c1
2 changed files with 2 additions and 2 deletions
@@ -65,7 +65,7 @@ const handleModelUpdated = () => {
const openDrawer = async (agent: AI.AgentItem) => {
agentId.value = agent.id;
currentAgent.value = agent;
header.value = `${agent.name} - ${t('aiTools.agents.configTitle')}`;
header.value = `${agent.name} - ${t('menu.config')}`;
activeTab.value = 'model';
open.value = true;
await loadModel();
+1 -1
View File
@@ -142,7 +142,7 @@ const getProviderLabel = (value: string) => {
const buttons = [
{
label: i18n.global.t('commons.button.set'),
label: i18n.global.t('menu.config'),
click: (row: AI.AgentItem) => openConfig(row),
},
{