Refine resale list badges
This commit is contained in:
@@ -104,9 +104,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
}
|
||||
|
||||
function formatItemCondition(itemCondition) {
|
||||
if (!itemCondition) {
|
||||
return language === 'ko' ? '미정' : '未設定';
|
||||
}
|
||||
if (!itemCondition || itemCondition === '-') return '';
|
||||
|
||||
const labels = {
|
||||
ko: {
|
||||
@@ -282,11 +280,11 @@ document.addEventListener('DOMContentLoaded', () => {
|
||||
document.getElementById('gameCountry').textContent =
|
||||
language === 'ko'
|
||||
? game.country === 'JPN'
|
||||
? '일본판'
|
||||
: '한국판'
|
||||
? '🇯🇵 일본판'
|
||||
: '🇰🇷 한국 정발판'
|
||||
: game.country === 'JPN'
|
||||
? '日本版'
|
||||
: '韓国版';
|
||||
? '🇯🇵 日本版'
|
||||
: '🇰🇷 韓国版';
|
||||
|
||||
// 게임 정보 설정
|
||||
const gameInfo = document.getElementById('gameInfo');
|
||||
|
||||
Reference in New Issue
Block a user