| ... | @@ -63,10 +63,16 @@ export default () => { |
... | @@ -63,10 +63,16 @@ export default () => { |
|
|
service: this.createCycleAnalyticsService(cycleAnalyticsEl.dataset.requestPath),
|
|
service: this.createCycleAnalyticsService(cycleAnalyticsEl.dataset.requestPath),
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
|
defaultNumberOfSummaryItems: 3,
|
|
|
computed: {
|
|
computed: {
|
|
|
currentStage() {
|
|
currentStage() {
|
|
|
return this.store.currentActiveStage();
|
|
return this.store.currentActiveStage();
|
|
|
},
|
|
},
|
|
|
|
summaryTableColumnClass() {
|
|
|
|
return this.state.summary.length === this.$options.defaultNumberOfSummaryItems
|
|
|
|
? 'col-sm-3'
|
|
|
|
: 'col-sm-4';
|
|
|
|
},
|
|
|
},
|
|
},
|
|
|
created() {
|
|
created() {
|
|
|
// Conditional check placed here to prevent this method from being called on the
|
|
// Conditional check placed here to prevent this method from being called on the
|
| ... | |
... | |
| ... | | ... | |