From f4ebe3389e7f6bbf0b97294a1f3671f37ad14f27 Mon Sep 17 00:00:00 2001 From: Pablo Date: Thu, 5 Apr 2018 23:59:32 +0200 Subject: [PATCH] Webui: Correctly sort the numbers (status) --- src/webui/static/app/status.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/webui/static/app/status.js b/src/webui/static/app/status.js index a8a1275b0..5ee90a50d 100644 --- a/src/webui/static/app/status.js +++ b/src/webui/static/app/status.js @@ -42,7 +42,7 @@ tvheadend.status_subs = function(panel, index) totalProperty: 'totalCount', fields: [ { name: 'id', sortType: stype }, - { name: 'hostname', sortType: stype }, + { name: 'hostname', sortType: stypei }, { name: 'username', sortType: stype }, { name: 'title', sortType: stype }, { name: 'channel', sortType: stype }, @@ -50,8 +50,8 @@ tvheadend.status_subs = function(panel, index) { name: 'profile', sortType: stype }, { name: 'state', sortType: stype }, { name: 'descramble', sortType: stype }, - { name: 'errors', sortType: stype }, - { name: 'in', sortType: stype }, + { name: 'errors', sortType: stypei }, + { name: 'in', sortType: stypei }, { name: 'out', sortType: stypei }, { name: 'start', -- 2.47.3