Skip to content

Commit

Permalink
💩 Guard empty contentFingerprints in edit ISCN
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Jan 14, 2025
1 parent 4a30a82 commit 60b4cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/edit/_iscnId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ export default class EditIscnPage extends Vue {
if (this.customContentFingerprints.length) {
array.push(...this.customContentFingerprints)
}
return array
return array.filter(Boolean)
}
get shouldShowDRMOption() {
Expand Down

0 comments on commit 60b4cd1

Please sign in to comment.