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 Jan 9, 2025
1 parent 541ad77 commit 9aa445d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/widgets/AddComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export default {
mounted() {
const production = this.productionMap.get(this.task.project_id)
this.mode =
production.is_publish_default_for_artists && this.isCurrentUserArtist
production?.is_publish_default_for_artists && this.isCurrentUserArtist
? 'publish'
: 'status'
Expand Down

0 comments on commit 9aa445d

Please sign in to comment.