Skip to content

Commit

Permalink
🔀 Merge #443 into deploy/rinkeby
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Feb 21, 2024
2 parents 73fa27c + 08f90d9 commit 73382e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/IscnUploadForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ export default class IscnUploadForm extends Vue {
if (errormsg) this.isOpenWarningSnackbar = true
}
@Watch('fileRecords')
@Watch('modifiedFileRecords')
async estimateArFee(fileRecords: any) {
if (fileRecords.length) {
this.uploadStatus = 'loading'
Expand Down
4 changes: 2 additions & 2 deletions pages/edit/_iscnId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -338,10 +338,10 @@ export default class EditIscnPage extends Vue {
description: this.description,
keywords: this.contentMetadata.keywords,
url: this.contentMetadata.url,
contentFingerprints: [
contentFingerprints: Array.from(new Set([
...this.contentFingerprints,
...this.customContentFingerprints,
],
])),
stakeholders: this.iscnRecord?.stakeholders,
type: this.contentMetadata['@type'],
usageInfo: this.contentMetadata.usageInfo,
Expand Down

0 comments on commit 73382e1

Please sign in to comment.