fix: Gateway 화면에서 raw 프로필 ID 노출을 제거한다
불변 profileName은 라우팅과 저장 경계에 유지하고 사용자 출력은 공통 표시명을 사용한다. 기본 인스턴스 suffix를 숨기고 비기본 인스턴스만 사람이 읽을 수 있게 구분한다.
This commit is contained in:
@@ -5,6 +5,7 @@ type ServerProfileTab = 'status' | 'version' | 'scenario' | 'cancel';
|
||||
|
||||
const props = defineProps<{
|
||||
profileName: string;
|
||||
profileLabel: string;
|
||||
activeTab: ServerProfileTab;
|
||||
canDeploy: boolean;
|
||||
canReset: boolean;
|
||||
@@ -45,7 +46,7 @@ const tabs = computed(() =>
|
||||
<nav
|
||||
class="server-profile-tabs"
|
||||
:style="{ '--server-tab-count': tabs.length }"
|
||||
:aria-label="`${profileName} 서버 관리 탭`"
|
||||
:aria-label="`${profileLabel} 서버 관리 탭`"
|
||||
data-testid="server-profile-tabs"
|
||||
>
|
||||
<RouterLink
|
||||
|
||||
Reference in New Issue
Block a user