release: 2026-04-14 (267건 커밋) #171

병합
dnlee develop 에서 main 로 12 commits 를 머지했습니다 2026-04-14 13:09:57 +09:00
3개의 변경된 파일1246개의 추가작업 그리고 2개의 파일을 삭제
Showing only changes of commit 1142e0cc46 - Show all commits

파일 보기

@ -1,4 +1,4 @@
import { useState } from 'react';
import React, { useState } from 'react';
import AdminSidebar from './AdminSidebar';
import AdminPlaceholder from './AdminPlaceholder';
import { findMenuLabel } from './adminMenuConfig';
@ -19,9 +19,10 @@ import MonitorVesselPanel from './MonitorVesselPanel';
import CollectHrPanel from './CollectHrPanel';
import MonitorForecastPanel from './MonitorForecastPanel';
import VesselMaterialsPanel from './VesselMaterialsPanel';
import DeidentifyPanel from './DeidentifyPanel';
/** 기존 패널이 있는 메뉴 ID 매핑 */
const PANEL_MAP: Record<string, () => JSX.Element> = {
const PANEL_MAP: Record<string, () => React.JSX.Element> = {
users: () => <UsersPanel />,
permissions: () => <PermissionsPanel />,
menus: () => <MenusPanel />,
@ -42,6 +43,7 @@ const PANEL_MAP: Record<string, () => JSX.Element> = {
'monitor-vessel': () => <MonitorVesselPanel />,
'collect-hr': () => <CollectHrPanel />,
'monitor-forecast': () => <MonitorForecastPanel />,
deidentify: () => <DeidentifyPanel />,
};
export function AdminView() {

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다. Load Diff

파일 보기

@ -91,6 +91,7 @@ export const ADMIN_MENU: AdminMenuItem[] = [
{ id: 'monitor-vessel', label: '선박위치정보' },
],
},
{ id: 'deidentify', label: '비식별화조치' },
],
},
];