Remove unnecessary 'return's

This commit is contained in:
Jason Henriquez 2024-04-20 08:02:41 -05:00
parent 5089cb3278
commit fa1cd3632e
5 changed files with 5 additions and 5 deletions

View File

@ -272,7 +272,7 @@ export default defineComponent({
},
keyboardShortcutHandler: function (event) {
return ctrlFHandler(event, this.$refs.searchBar)
ctrlFHandler(event, this.$refs.searchBar)
},
...mapActions([

View File

@ -412,7 +412,7 @@ export default defineComponent({
},
keyboardShortcutHandler: function (event) {
return ctrlFHandler(event, this.$refs.searchInput)
ctrlFHandler(event, this.$refs.searchInput)
},
...mapActions([
'showAddToPlaylistPromptForManyVideos',

View File

@ -119,7 +119,7 @@ export default defineComponent({
}
},
keyboardShortcutHandler: function (event) {
return ctrlFHandler(event, this.$refs.searchBar)
ctrlFHandler(event, this.$refs.searchBar)
}
}
})

View File

@ -161,7 +161,7 @@ export default defineComponent({
},
keyboardShortcutHandler: function (event) {
return ctrlFHandler(event, this.$refs.searchBarChannels)
ctrlFHandler(event, this.$refs.searchBarChannels)
},
...mapActions([

View File

@ -248,7 +248,7 @@ export default defineComponent({
},
keyboardShortcutHandler: function (event) {
return ctrlFHandler(event, this.$refs.searchBar)
ctrlFHandler(event, this.$refs.searchBar)
},
...mapActions([