9f3a37f1c2
The UI will no longer try to redirect to the appropriate namespace or region if one is found in localStorage. Instead, it will assume that the lack of query param means the default namespaces or region is desired.
22 lines
485 B
JavaScript
22 lines
485 B
JavaScript
import Component from '@ember/component';
|
|
import { computed } from '@ember/object';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
system: service(),
|
|
router: service(),
|
|
store: service(),
|
|
|
|
sortedRegions: computed('system.regions', function() {
|
|
return this.get('system.regions')
|
|
.toArray()
|
|
.sort();
|
|
}),
|
|
|
|
gotoRegion(region) {
|
|
this.get('router').transitionTo('jobs', {
|
|
queryParams: { region },
|
|
});
|
|
},
|
|
});
|