From 59426838cbb15910fa08ad995c67db7491c4b63e Mon Sep 17 00:00:00 2001 From: ymq Date: Sun, 16 Aug 2026 18:41:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20sdlc=E8=8F=9C=E5=8D=95=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E5=B0=BA=E5=AF=B8=E6=94=B9width/height=E7=99=BE=E5=88=86?= =?UTF-8?q?=E6=AF=94?= 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 e568ac6..e4ef39e 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", "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}, + {"label": "📁 项目", "icon": "", "url": "/pipeline-sdlc/sd_projects/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🐛 Bug", "icon": "", "url": "/pipeline-sdlc/sd_bugs/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🧪 测试用例", "icon": "", "url": "/pipeline-sdlc/sd_test_cases/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🔄 迭代", "icon": "", "url": "/pipeline-sdlc/sd_iterations/index.ui", "type": "popup", "width": "85%", "height": "80%"}, ], ) register_ability(ability)