ENH: Drop Overview and add loading indicators (#49)
This commit is contained in:
parent
cb3bc081a6
commit
d014fc099c
3 changed files with 6 additions and 4 deletions
|
@ -3,4 +3,8 @@ import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-rout
|
|||
|
||||
const { Route } = Ember;
|
||||
|
||||
export default Route.extend(AuthenticatedRouteMixin, {});
|
||||
export default Route.extend(AuthenticatedRouteMixin, {
|
||||
afterModel() {
|
||||
this.transitionTo('collections');
|
||||
},
|
||||
});
|
||||
|
|
|
@ -3,9 +3,6 @@
|
|||
<div class="row">
|
||||
<div class="col-md-2 sidebar">
|
||||
<ul class="nav nav-sidebar">
|
||||
{{#link-to 'index' tagName='li' href=false}}
|
||||
{{link-to 'Overview' 'index'}}
|
||||
{{/link-to}}
|
||||
{{#link-to 'collections' tagName='li' href=false}}
|
||||
{{link-to 'Collections' 'collections'}}
|
||||
{{/link-to}}
|
||||
|
|
1
app/templates/collections/loading.hbs
Normal file
1
app/templates/collections/loading.hbs
Normal file
|
@ -0,0 +1 @@
|
|||
{{loading-spinner}}
|
Loading…
Add table
Reference in a new issue