16 lines
501 B
JavaScript
16 lines
501 B
JavaScript
import Route from '@ember/routing/route';
|
|
import { get } from '@ember/object';
|
|
|
|
export default Route.extend({
|
|
afterModel: function(model, transition) {
|
|
const parent = this.routeName
|
|
.split('.')
|
|
.slice(0, -1)
|
|
.join('.');
|
|
// the default selected tab depends on whether you have any healthchecks or not
|
|
// so check the length here.
|
|
const to = get(model, 'item.Checks.length') > 0 ? 'healthchecks' : 'services';
|
|
this.replaceWith(`${parent}.${to}`, model);
|
|
},
|
|
});
|