@@ -73,7 +73,7 @@
data.rows.forEach(cardType => {
const option = document.createElement('option');
option.value = cardType.id;
- option.text = cardType.realName;
+ option.text = cardType.username;
userSelect.appendChild(option);
});
},