Fix sort fields on Video Playlists
displayName does not exist in VideoPlaylistModel, the correct field is `name`
This commit is contained in:
parent
8c666c44ab
commit
117c643e45
|
@ -85,7 +85,7 @@ const SORTABLE_COLUMNS = {
|
||||||
|
|
||||||
USER_NOTIFICATIONS: [ 'createdAt', 'read' ],
|
USER_NOTIFICATIONS: [ 'createdAt', 'read' ],
|
||||||
|
|
||||||
VIDEO_PLAYLISTS: [ 'displayName', 'createdAt', 'updatedAt' ],
|
VIDEO_PLAYLISTS: [ 'name', 'createdAt', 'updatedAt' ],
|
||||||
|
|
||||||
PLUGINS: [ 'name', 'createdAt', 'updatedAt' ],
|
PLUGINS: [ 'name', 'createdAt', 'updatedAt' ],
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue