diff --git a/src/Forms.vue b/src/Forms.vue index d5faeae3..88192313 100644 --- a/src/Forms.vue +++ b/src/Forms.vue @@ -372,7 +372,7 @@ export default { } else { const sharedFormIndex = this.sharedForms.findIndex(form => form.id === id) this.sharedForms[sharedFormIndex].lastUpdated = moment().unix() - this.sharedForms.sort((a, b) => a.lastUpdated - b.lastUpdated) + this.sharedForms.sort((b, a) => a.lastUpdated - b.lastUpdated) } }, },