Skip to content

Commit

Permalink
[pre-commit.ci lite] apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored Dec 5, 2024
1 parent 6191867 commit e888e12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
}
const tally = this.getContentStatusTally(
content.content_id,
this.getLearnersForLesson(this.currentLesson)
this.getLearnersForLesson(this.currentLesson),
);
const tableRow = {
Expand All @@ -124,10 +124,9 @@
return tableRow;
});
Promise.all(response)
.then(results => {
this.resources = results;
})
Promise.all(response).then(results => {
this.resources = results;
});
},
resourceLink(resource) {
if (resource.hasAssignments) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<span class="add-minus-button">
<KIconButton
icon="emptyTopic"
@click="$emit('navigateToParent',lesson.id)"
@click="$emit('navigateToParent', lesson.id)"
/>

<KIconButton
Expand Down

0 comments on commit e888e12

Please sign in to comment.