removed typo "upstremModel"

Looks like a typo to me, but please may some once double check that I didn't break anything.
This commit is contained in:
sjjh 2020-04-03 09:57:22 +02:00 committed by GitHub
parent 0e77afcfb1
commit 693bd6f9d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -68,12 +68,12 @@
this.msec.period = time - this.msec.last;
this.msec.last = time;
};
const UpstremModel = Backbone.Model.extend({
const UpstreamModel = Backbone.Model.extend({
idAttribute: 'uuid'
});
const UpstreamCollection = Backbone.Collection.extend({
url: '/api/nginx/settings/searchupstream',
model: UpstremModel,
model: UpstreamModel,
parse: function(response) {
return response.rows;
},