ui: fix datacenter route typo

This commit is contained in:
Jack Pearkes 2014-05-01 11:42:40 -04:00
parent 595af2deb1
commit 2edf16c188
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ App.BaseRoute = Ember.Route.extend({
App.IndexRoute = App.BaseRoute.extend({
// Retrieve the list of datacenters
model: function(params) {
return Ember.$.getJSON('/v1/catalog/datacenaters').then(function(data) {
return Ember.$.getJSON('/v1/catalog/datacenters').then(function(data) {
return data
})
},