fix:카테고리 스코프 분류 버그 수정, 복사 시 소프트삭제 복원, UI 개선
- isset→array_key_exists: description NULL인 그룹 스코프 오분류 수정 - 글로벌+테넌트 필터 버튼 추가 (공통코드/카테고리) - 전체선택 체크박스를 헤더 아이콘 앞에 배치 - 스크롤 영역 calc(100vh-180px) 화면 기준으로 변경 - 복사 시 소프트삭제된 동일 코드 존재하면 복원 처리 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -136,8 +136,8 @@ public function index(Request $request): View|Response
|
||||
$codeGroups = [];
|
||||
$groupScopes = [];
|
||||
foreach ($allGroupKeys as $group) {
|
||||
$inGlobal = isset($globalGroupDescs[$group]);
|
||||
$inTenant = isset($tenantGroupDescs[$group]);
|
||||
$inGlobal = array_key_exists($group, $globalGroupDescs);
|
||||
$inTenant = array_key_exists($group, $tenantGroupDescs);
|
||||
|
||||
$codeGroups[$group] = ! empty($globalGroupDescs[$group])
|
||||
? $globalGroupDescs[$group]
|
||||
|
||||
Reference in New Issue
Block a user