We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ff38b4 + 56b57fb commit 7387958Copy full SHA for 7387958
1 file changed
packages/ilios-common/addon/components/course/visualize-instructor-term-graph.gjs
@@ -147,10 +147,8 @@ export default class CourseVisualizeInstructorTermGraph extends Component {
147
return set;
148
}, [])
149
.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);
+ obj.description = `${obj.meta.vocabulary.title} - ${obj.meta.term.title} - ${obj.data} ${this.intl.t('general.minutes')}`;
+ delete obj.id;
154
return obj;
155
})
156
.sort((first, second) => {
0 commit comments