0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00

Use full name if present

Dieser Commit ist enthalten in:
Angus McLeod 2020-04-16 09:32:35 +10:00
Ursprung 3e350ac3dd
Commit 707f187455

Datei anzeigen

@ -10,7 +10,7 @@ export default ComboBox.extend({
}).map(g => {
return {
id: g.id,
name: g.full_name
name: g.full_name ? g.full_name : g.name
}
});
})