권한 4단계 UI 연결 보강: 인라인/설정 문구 동기화
Some checks failed
Release Gate / gate (push) Has been cancelled

- 인라인 Permission 버튼 표시값을 정규화(Ask/Plan/Auto/Deny) 기반으로 표시

- 설정 창 기본 파일 접근 권한 힌트에 4단계 구조를 명시

- 검증: dotnet build 경고0 오류0, dotnet test 374/374 통과
This commit is contained in:
2026-04-03 21:11:35 +09:00
parent abfa52a9fe
commit e7eec1035f
2 changed files with 2 additions and 2 deletions

View File

@@ -10407,7 +10407,7 @@ public partial class ChatWindow : Window
BtnInlineFastMode.Content = $"Fast mode · {(llm.FreeTierMode ? "On" : "Off")}";
BtnInlineReasoning.Content = $"Reasoning · {ReasoningLabel(llm.AgentDecisionLevel)}";
BtnInlinePlanMode.Content = $"Plan mode · {PlanModeLabel(llm.PlanMode)}";
BtnInlinePermission.Content = $"Permission · {llm.FilePermission}";
BtnInlinePermission.Content = $"Permission · {PermissionModeCatalog.NormalizeGlobalMode(llm.FilePermission)}";
BtnInlineSkill.Content = $"Skill system · {(llm.EnableSkillSystem ? "On" : "Off")}";
BtnInlineCommandBrowser.Content = "명령/스킬 브라우저";

View File

@@ -4340,7 +4340,7 @@
<Grid>
<StackPanel HorizontalAlignment="Left">
<TextBlock Style="{StaticResource RowLabel}" Text="기본 파일 접근 권한"/>
<TextBlock Style="{StaticResource RowHint}" Text="Cowork/Code 탭 진입 시 자동 적용되는 권한입니다."/>
<TextBlock Style="{StaticResource RowHint}" Text="Cowork/Code 탭 진입 시 자동 적용됩니다. Ask / Plan / Auto / Deny 4단계 권한을 지원합니다."/>
</StackPanel>
<ComboBox HorizontalAlignment="Right" VerticalAlignment="Center"
Width="160" SelectedValue="{Binding DefaultAgentPermission, Mode=TwoWay}"