We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e3e564 commit 12fbdb6Copy full SHA for 12fbdb6
app/models/team.js
@@ -15,6 +15,7 @@ export default Model.extend({
15
return login_split[1];
16
}),
17
display_name: computed('name', 'org_name', function() {
18
- return `${this.org_name}/${this.name}`;
+ let { name, org_name } = this.getProperties('name', 'org_name');
19
+ return `${org_name}/${name}`;
20
21
});
0 commit comments