Display submitter name in admin panel for games submitted without account

main
sudoer777 2021-12-07 10:55:34 -07:00
parent cd1f17803b
commit 119aae76e5
1 changed files with 7 additions and 2 deletions

View File

@ -291,8 +291,13 @@ CATEGORIES.push(new Category(
row.appendChild(dateCell); row.appendChild(dateCell);
const submitterCell = document.createElement('td'); const submitterCell = document.createElement('td');
if(game.submitterID) {
Data.getAccount(game.submitterID) Data.getAccount(game.submitterID)
.then(data => submitterCell.textContent = data.name); .then(data => submitterCell.textContent = data.name);
} else {
submitterCell.textContent = game.submitterName;
console.log(game.submitterName);
}
row.appendChild(submitterCell); row.appendChild(submitterCell);
}, },
async function addGame() { async function addGame() {