Fix sort fields on Video Playlists

displayName does not exist in VideoPlaylistModel, the correct field is `name`
This commit is contained in:
Arman 2020-12-01 16:26:37 +03:30 committed by Chocobozzz
parent 8c666c44ab
commit 117c643e45
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ const SORTABLE_COLUMNS = {
USER_NOTIFICATIONS: [ 'createdAt', 'read' ],
VIDEO_PLAYLISTS: [ 'displayName', 'createdAt', 'updatedAt' ],
VIDEO_PLAYLISTS: [ 'name', 'createdAt', 'updatedAt' ],
PLUGINS: [ 'name', 'createdAt', 'updatedAt' ],