From ffcfa5ab7c15bfa59c116546ef9bcdce5c741d83 Mon Sep 17 00:00:00 2001 From: ymq Date: Sun, 16 Aug 2026 18:34:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20sdlc=E8=8F=9C=E5=8D=95=E5=8A=A0cwidth/c?= =?UTF-8?q?height=E6=8E=A7=E5=88=B6=E5=BC=B9=E7=AA=97=E5=A4=A7=E5=B0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline_service/sdlc_ability.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pipeline_service/sdlc_ability.py b/pipeline_service/sdlc_ability.py index 1b1aac2..e568ac6 100644 --- a/pipeline_service/sdlc_ability.py +++ b/pipeline_service/sdlc_ability.py @@ -611,10 +611,10 @@ def register_sdlc_ability(): handlers=SDL_HANDLERS, roles=SDL_ROLES, menus=[ - {"label": "📁 项目", "icon": "", "url": "/pipeline-sdlc/sd_projects/index.ui", "type": "popup"}, - {"label": "🐛 Bug", "icon": "", "url": "/pipeline-sdlc/sd_bugs/index.ui", "type": "popup"}, - {"label": "🧪 测试用例", "icon": "", "url": "/pipeline-sdlc/sd_test_cases/index.ui", "type": "popup"}, - {"label": "🔄 迭代", "icon": "", "url": "/pipeline-sdlc/sd_iterations/index.ui", "type": "popup"}, + {"label": "📁 项目", "icon": "", "url": "/pipeline-sdlc/sd_projects/index.ui", "type": "popup", "cwidth": 70, "cheight": 40}, + {"label": "🐛 Bug", "icon": "", "url": "/pipeline-sdlc/sd_bugs/index.ui", "type": "popup", "cwidth": 70, "cheight": 40}, + {"label": "🧪 测试用例", "icon": "", "url": "/pipeline-sdlc/sd_test_cases/index.ui", "type": "popup", "cwidth": 70, "cheight": 40}, + {"label": "🔄 迭代", "icon": "", "url": "/pipeline-sdlc/sd_iterations/index.ui", "type": "popup", "cwidth": 70, "cheight": 40}, ], ) register_ability(ability)