Skip to content

Commit 7387958

Browse files
authored
Merge pull request #8992 from stopfstedt/less-weird
2 parents 1ff38b4 + 56b57fb commit 7387958

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

packages/ilios-common/addon/components/course/visualize-instructor-term-graph.gjs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,8 @@ export default class CourseVisualizeInstructorTermGraph extends Component {
147147
return set;
148148
}, [])
149149
.map((obj) => {
150-
((obj.description = `${obj.meta.vocabulary.title} - ${obj.meta.term.title} - ${
151-
obj.data
152-
} ${this.intl.t('general.minutes')}`),
153-
delete obj.id);
150+
obj.description = `${obj.meta.vocabulary.title} - ${obj.meta.term.title} - ${obj.data} ${this.intl.t('general.minutes')}`;
151+
delete obj.id;
154152
return obj;
155153
})
156154
.sort((first, second) => {

0 commit comments

Comments
 (0)