Skip to content

Commit

Permalink
fix: loading on NegotiationPage.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
RadovanTomik committed Aug 13, 2024
1 parent a623201 commit 3dae9b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/NegotiationPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ export default {
return this.negotiation.author
},
loading () {
return (this.negotiation === undefined && this.resources.length === 0)
return (this.negotiation === undefined || this.resources.length === 0)
},
isUserRoleResearcher () {
return this.userRole === ROLES.RESEARCHER
Expand Down

0 comments on commit 3dae9b2

Please sign in to comment.