Skip to content

Commit

Permalink
Removed explicit zero reflection when loading routes
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Helldar authored Oct 16, 2020
1 parent d3e65d3 commit 4e543dd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/views/routes.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,10 @@ class="link"
},
countRoutes() {
if (this.loading === true) {
return '...';
}
let all = this.routes.length;
let filtered = this.filteredRoutes.length;
Expand Down

1 comment on commit 4e543dd

@andrey-helldar
Copy link
Member

Choose a reason for hiding this comment

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

image

Please sign in to comment.