From 2ca23a00b9013fc691a2004946f8dfada41e987f Mon Sep 17 00:00:00 2001 From: 2620227 Date: Fri, 10 Jul 2026 17:37:46 +0900 Subject: [PATCH] =?UTF-8?q?feat(profile):=20=EA=B4=80=EB=A6=AC=EC=9E=90=20?= =?UTF-8?q?=EB=B1=83=EC=A7=80=20=ED=98=B8=EB=B2=84=20=ED=88=B4=ED=8C=81=20?= =?UTF-8?q?=EB=AC=B8=EA=B5=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 뱃지에 마우스를 올리면 ' Portal 관리자' 가 브라우저 기본 툴팁으로 표시되도록 title 속성(SVG + 래핑 span) 일치시킴. 기존 '관리자 인증' 보다 구체적 문구. Co-Authored-By: Claude <noreply@anthropic.com> --- views/profile.ejs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/profile.ejs b/views/profile.ejs index 7b1e47e..f832757 100644 --- a/views/profile.ejs +++ b/views/profile.ejs @@ -20,7 +20,7 @@ <div class="profile-idline"> <h1 class="profile-name"><%= profile.name %></h1> <span class="profile-sabun"><%= profile.sabun %></span> - <% if (profile.is_admin) { %><span class="admin-badge-wrap" title="관리자 인증"><%- adminBadge({ size: 16 }) %></span><% } %> + <% if (profile.is_admin) { const _adminTitle = `${brand} Portal 관리자`; %><span class="admin-badge-wrap" title="<%= _adminTitle %>"><%- adminBadge({ size: 16, title: _adminTitle }) %></span><% } %> </div> <div class="profile-metaline"> <span><%= profile.project_count %>개 프로젝트</span>