Skip to content

Commit

Permalink
fix(typescript): missing return type
Browse files Browse the repository at this point in the history
  • Loading branch information
eteubert committed May 19, 2024
1 parent dcb62fa commit f97b4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/modules/transcripts/components/Voices.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default defineComponent({
},
computed: {
sortedContributors() {
sortedContributors(): PodloveContributor[] {
return this.state.contributors.sort((a: PodloveContributor, b: PodloveContributor) => {
const aName = a.publicname || a.realname || a.nickname
const bName = b.publicname || b.realname || b.nickname
Expand Down

0 comments on commit f97b4ee

Please sign in to comment.