Skip to content

Commit

Permalink
[breakdown] fix resfresh of episode casting
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanBldy committed Nov 2, 2023
1 parent 0caef33 commit 8a3a118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/api/breakdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default {

getSequenceCasting(productionId, sequenceId, episodeId) {
let path = `/api/data/projects/${productionId}/sequences/${sequenceId}/casting`
if (episodeId) {
if (episodeId && episodeId !== 'all') {
path = `/api/data/projects/${productionId}/episodes/${episodeId}/sequences/all/casting`
}
return client.pget(path)
Expand Down

0 comments on commit 8a3a118

Please sign in to comment.