Skip to content

Commit

Permalink
[qa] fix edge case of undefined value
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoPennec committed Feb 5, 2025
1 parent b739277 commit 7daf2cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/store/modules/episodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const helpers = {
assetTypes: [],
taskTypes,
taskStatuses,
descriptors: production.descriptors,
descriptors: production?.descriptors || [],
persons,
query
})
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/sequences.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const helpers = {
assetTypes: [],
taskTypes,
taskStatuses,
descriptors: production.descriptors,
descriptors: production?.descriptors || [],
persons,
query
})
Expand Down
2 changes: 1 addition & 1 deletion src/store/modules/shots.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const helpers = {
assetTypes: [],
taskTypes,
taskStatuses,
descriptors: production.descriptors,
descriptors: production?.descriptors || [],
persons,
query
})
Expand Down

0 comments on commit 7daf2cd

Please sign in to comment.