Skip to content

Commit

Permalink
🐛 #97 correct job delivery data
Browse files Browse the repository at this point in the history
  • Loading branch information
JAGFx committed Feb 20, 2022
1 parent 4eddce9 commit 337b534
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/store/telemetry.store.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export const getters = {
);
},
jobDeliveryTime() {
return store.job.market.id === 'external_contracts'
? store.job.expectedDeliveryTimestamp.value
: store.job.expectedDeliveryTimestamp.unix;
return store.telemetry.job.market.id === 'external_contracts'
? store.telemetry.job.expectedDeliveryTimestamp.value
: store.telemetry.job.expectedDeliveryTimestamp.unix;
}
};

0 comments on commit 337b534

Please sign in to comment.