From ba0bbddce91bdae928a3b5b8bc92bf4c9bb9bf33 Mon Sep 17 00:00:00 2001 From: thezoggy <500882+thezoggy@users.noreply.github.com> Date: Tue, 20 Feb 2018 07:41:01 -0600 Subject: [PATCH] Fixed: Remove sorting on Monitor/Profile columns to prevent unexpected results until sorting can properly be handled. Quick Fix for #2540 (#2553) Fixes #2540 --- src/UI/AddMovies/BulkImport/BulkImportView.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/UI/AddMovies/BulkImport/BulkImportView.js b/src/UI/AddMovies/BulkImport/BulkImportView.js index da2a6604e..41115c638 100644 --- a/src/UI/AddMovies/BulkImport/BulkImportView.js +++ b/src/UI/AddMovies/BulkImport/BulkImportView.js @@ -94,13 +94,15 @@ module.exports = Marionette.Layout.extend({ name :'monitor', label: 'Monitor', cell : MonitorCell, - cellValue : 'this' + cellValue : 'this', + sortable : false, }, { name : 'profileId', label : 'Profile', cell : ProfileCell, cellValue : "this", + sortable : false, }, { name : 'quality',