Display submitter name in admin panel for games submitted without account
parent
cd1f17803b
commit
119aae76e5
|
@ -291,8 +291,13 @@ CATEGORIES.push(new Category(
|
||||||
row.appendChild(dateCell);
|
row.appendChild(dateCell);
|
||||||
|
|
||||||
const submitterCell = document.createElement('td');
|
const submitterCell = document.createElement('td');
|
||||||
Data.getAccount(game.submitterID)
|
if(game.submitterID) {
|
||||||
.then(data => submitterCell.textContent = data.name);
|
Data.getAccount(game.submitterID)
|
||||||
|
.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() {
|
||||||
|
|
Reference in New Issue