1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Removed sorting on diskspace table to prevent errors

This commit is contained in:
Mark McDowall 2014-12-01 18:49:04 -08:00
parent 867746a763
commit 1dea451ace
2 changed files with 18 additions and 12 deletions

View File

@ -1,8 +1,11 @@
'use strict'; 'use strict';
define(['backbone', 'System/Info/DiskSpace/DiskSpaceModel'],
define(['backbone',
'System/Info/DiskSpace/DiskSpaceModel'],
function(Backbone, DiskSpaceModel) { function(Backbone, DiskSpaceModel) {
return Backbone.Collection.extend({ return Backbone.Collection.extend({
url:window.NzbDrone.ApiRoot +'/diskspace',
model: DiskSpaceModel url : window.NzbDrone.ApiRoot +'/diskspace',
model : DiskSpaceModel
}); });
}); });

View File

@ -18,19 +18,22 @@ define([
columns: columns:
[ [
{ {
name: 'path', name : 'path',
label: 'Location', label : 'Location',
cell: DiskSpacePathCell cell : DiskSpacePathCell,
sortable : false
}, },
{ {
name: 'freeSpace', name : 'freeSpace',
label: 'Free Space', label : 'Free Space',
cell: FileSizeCell cell : FileSizeCell,
sortable : false
}, },
{ {
name: 'totalSpace', name : 'totalSpace',
label: 'Total Space', label : 'Total Space',
cell: FileSizeCell cell : FileSizeCell,
sortable : false
} }
], ],