feat(profile): 관리자 뱃지 호버 툴팁 문구 추가
뱃지에 마우스를 올리면 ' Portal 관리자' 가 브라우저 기본 툴팁으로 표시되도록 title 속성(SVG <title> + 래핑 span) 일치시킴. 기존 '관리자 인증' 보다 구체적 문구. Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user