From 693bd6f9d188da428f6b89b3a1db02b3ca770556 Mon Sep 17 00:00:00 2001 From: sjjh <2787214+sjjh@users.noreply.github.com> Date: Fri, 3 Apr 2020 09:57:22 +0200 Subject: [PATCH] removed typo "upstremModel" Looks like a typo to me, but please may some once double check that I didn't break anything. --- www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/vts.volt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/vts.volt b/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/vts.volt index 69d8dd58d..e76b581cc 100644 --- a/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/vts.volt +++ b/www/nginx/src/opnsense/mvc/app/views/OPNsense/Nginx/vts.volt @@ -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; },