Skip to content

Commit

Permalink
Fix channel sort values to show the values they are (#5162)
Browse files Browse the repository at this point in the history
  • Loading branch information
kommunarr committed May 25, 2024
1 parent ee5f399 commit decce53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/renderer/views/Channel/Channel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@
<ft-select
v-if="showVideoSortBy"
v-show="currentTab === 'videos' && latestVideos.length > 0"
:value="videoLiveShortSelectValues[0]"
:value="videoSortBy"
:select-names="videoLiveShortSelectNames"
:select-values="videoLiveShortSelectValues"
:placeholder="$t('Search Filters.Sort By.Sort By')"
Expand All @@ -242,7 +242,7 @@
<ft-select
v-if="!hideChannelShorts && showShortSortBy"
v-show="currentTab === 'shorts' && latestShorts.length > 0"
:value="videoLiveShortSelectValues[0]"
:value="shortSortBy"
:select-names="videoLiveShortSelectNames"
:select-values="videoLiveShortSelectValues"
:placeholder="$t('Search Filters.Sort By.Sort By')"
Expand All @@ -252,7 +252,7 @@
<ft-select
v-if="!hideLiveStreams && showLiveSortBy"
v-show="currentTab === 'live' && latestLive.length > 0"
:value="videoLiveShortSelectValues[0]"
:value="liveSortBy"
:select-names="videoLiveShortSelectNames"
:select-values="videoLiveShortSelectValues"
:placeholder="$t('Search Filters.Sort By.Sort By')"
Expand All @@ -262,7 +262,7 @@
<ft-select
v-if="!hideChannelPlaylists && showPlaylistSortBy"
v-show="currentTab === 'playlists' && latestPlaylists.length > 0"
:value="playlistSelectValues[0]"
:value="playlistSortBy"
:select-names="playlistSelectNames"
:select-values="playlistSelectValues"
:placeholder="$t('Search Filters.Sort By.Sort By')"
Expand Down

0 comments on commit decce53

Please sign in to comment.