Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
Add extra delay to record field processing
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed May 19, 2022
1 parent 8213128 commit b6e722d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/components/ModuleFields/Editor/Record.vue
Expand Up @@ -474,7 +474,9 @@ export default {
})
})
}).finally(() => {
this.processing = false
setTimeout(() => {
this.processing = false
}, 300)
})
},
Expand Down
6 changes: 4 additions & 2 deletions src/components/ModuleFields/Viewer/Record.vue
Expand Up @@ -51,7 +51,7 @@ export default {
return value.map(recordID => {
return {
to: this.linkToRecord(recordID),
value: this.processing ? '' : this.recordValues[recordID] || recordID,
value: this.recordValues[recordID] || recordID,
}
})
},
Expand Down Expand Up @@ -147,7 +147,9 @@ export default {
})
})
}).finally(() => {
this.processing = false
setTimeout(() => {
this.processing = false
}, 300)
})
},
},
Expand Down

0 comments on commit b6e722d

Please sign in to comment.