Skip to content

Commit

Permalink
fixes linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanOXDi committed Feb 9, 2024
1 parent db86ef3 commit b1f09dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,10 @@ export default function useQuizResources({ topicId } = {}) {
set(_resources, [...get(_resources), ...results]);
return annotateTopicsWithDescendantCounts(
results.filter(({ kind }) => kind === ContentNodeKinds.TOPIC).map(topic => topic.id)
).then(() =>{
).then(() => {
set(_loading, false);
set(_loadingMore, false);
}
);
});
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@
type: Function, // ContentNode => Route
required: true,
},
loadingMoreState:{
loadingMoreState: {
type: Boolean,
default: false,
}
},
},
computed: {
showButton() {
Expand Down

0 comments on commit b1f09dc

Please sign in to comment.