Displaying name instead of ID for relation
return {{actions.loadUsers.data}}
.map(user => {
return {
value: user.id,
title: user.first_name
}
});

Last updated
Was this helpful?
return {{actions.loadUsers.data}}
.map(user => {
return {
value: user.id,
title: user.first_name
}
});

Last updated
Was this helpful?
Was this helpful?