From 3ef21a943e203fbf217150902d8f2bc8b66c49a9 Mon Sep 17 00:00:00 2001 From: n313893254 Date: Fri, 7 Dec 2018 17:26:53 +0800 Subject: [PATCH] Click on checkbox for bulk action doesn't work https://github.com/rancher/rancher/issues/16601 --- lib/shared/addon/components/sortable-table/component.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/shared/addon/components/sortable-table/component.js b/lib/shared/addon/components/sortable-table/component.js index f9ebfd59e..f91de9449 100644 --- a/lib/shared/addon/components/sortable-table/component.js +++ b/lib/shared/addon/components/sortable-table/component.js @@ -530,7 +530,7 @@ export default Component.extend(Sortable, StickyHeader, { }, set(key, value) { - var content = this.get('pagedContent').filterBy('canBulkRemove').filterBy('canRemove'); + var content = this.get('pagedContent').filterBy('canBulkRemove'); if ( value ) { this.toggleMulti(content, []);