fix(channels): 국가 탭 라벨 한글화(국기 이모지 미렌더 대응)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
hehihoho3@gmail.com 2026-06-26 15:25:59 +09:00
parent 84155a69f8
commit 24f964364a

View File

@ -30,9 +30,9 @@
<!-- 국가별 탭 --> <!-- 국가별 탭 -->
<div class="flex gap-2 mb-4" id="countryTabs" style="flex-wrap: wrap;"> <div class="flex gap-2 mb-4" id="countryTabs" style="flex-wrap: wrap;">
<button type="button" class="ctab btn btn-primary" data-country="ALL" onclick="filterByCountry('ALL', this)">전체</button> <button type="button" class="ctab btn btn-primary" data-country="ALL" onclick="filterByCountry('ALL', this)">전체</button>
<button type="button" class="ctab btn btn-ghost" data-country="KR" onclick="filterByCountry('KR', this)">🇰🇷 KR</button> <button type="button" class="ctab btn btn-ghost" data-country="KR" onclick="filterByCountry('KR', this)">한국</button>
<button type="button" class="ctab btn btn-ghost" data-country="JP" onclick="filterByCountry('JP', this)">🇯🇵 JP</button> <button type="button" class="ctab btn btn-ghost" data-country="JP" onclick="filterByCountry('JP', this)">일본</button>
<button type="button" class="ctab btn btn-ghost" data-country="US" onclick="filterByCountry('US', this)">🇺🇸 US</button> <button type="button" class="ctab btn btn-ghost" data-country="US" onclick="filterByCountry('US', this)">미국</button>
<button type="button" class="ctab btn btn-ghost" data-country="ETC" onclick="filterByCountry('ETC', this)">기타</button> <button type="button" class="ctab btn btn-ghost" data-country="ETC" onclick="filterByCountry('ETC', this)">기타</button>
</div> </div>