Skip to content

Commit

Permalink
Merge pull request #707 from barryvdh/fix-view-tab-order
Browse files Browse the repository at this point in the history
Fix view tab selection order
  • Loading branch information
taylorotwell authored Aug 22, 2019
2 parents c6b43aa + b92f1bd commit e384830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/components/RelatedEntries.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
this.currentTab = 'exceptions'
} else if (this.logs.length) {
this.currentTab = 'logs'
} else if (this.views.length) {
this.currentTab = 'views'
} else if (this.queries.length) {
this.currentTab = 'queries'
} else if (this.models.length) {
Expand All @@ -62,8 +64,6 @@
this.currentTab = 'gates'
} else if (this.redis.length) {
this.currentTab = 'redis'
} else if (this.views.length) {
this.currentTab = 'views'
}
},
Expand Down

0 comments on commit e384830

Please sign in to comment.