Skip to content

Commit

Permalink
Merge pull request #1234 from EvanBldy/master
Browse files Browse the repository at this point in the history
[breakdown] fix refresh of episode casting
  • Loading branch information
EvanBldy authored Nov 2, 2023
2 parents 0caef33 + 8a3a118 commit 28cc090
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 28cc090

Please sign in to comment.