diff --git a/src/scripts/js/es6/common/api/shots.js b/src/scripts/js/es6/common/api/shots.js index c3f1d9c..4cb5fa1 100644 --- a/src/scripts/js/es6/common/api/shots.js +++ b/src/scripts/js/es6/common/api/shots.js @@ -2,8 +2,9 @@ function thenGetProjectShots(projectId) { let where = { project: projectId, node_type: 'attract_shot' - } - return pillar.api.thenGetNodes(where); + }; + let sort = '-properties.used_in_edit,properties.cut_in_timeline_in_frames'; + return pillar.api.thenGetNodes(where, {}, sort); } export { thenGetProjectShots }