Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/pages/MainPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ export default {
_this.$store.commit('setRetrieved', newRoad);
});
} else if (newRoad !== '') {
// Reset fulfillmentNeeded so that new Roads still call FireRoad to check fulfillment.
this.$store.commit('resetFulfillmentNeeded');
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is calling update fulfillment twice when you create a new road while logged in (once on creation, once on name change). This should go specifically after a new road is added instead (in addRoad on MainPage).

this.updateFulfillment(this.$store.state.fulfillmentNeeded);
}
if (newRoad !== '') {
Expand Down