Commit 8ad1d303 authored by Mike Greiling's avatar Mike Greiling

Resolve conflict in app/assets/javascripts/monitoring/components/dashboard.vue

parent 600e1b0e
......@@ -169,21 +169,7 @@ export default {
methods: {
getGraphsData() {
this.state = 'loading';
<<<<<<< HEAD
Promise.all(this.servicePromises)
=======
Promise.all([
this.service.getGraphsData().then(data => this.store.storeMetrics(data)),
this.service
.getDeploymentData()
.then(data => this.store.storeDeploymentData(data))
.catch(() => Flash(s__('Metrics|There was an error getting deployment information.'))),
this.service
.getEnvironmentsData()
.then(data => this.store.storeEnvironmentsData(data))
.catch(() => Flash(s__('Metrics|There was an error getting environments information.'))),
])
>>>>>>> upstream/master
.then(() => {
if (this.store.groups.length < 1) {
this.state = 'noData';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment