FIX: select all button on group assigned page (#14523)

Button is not working properly because `updateAutoAddTopicsToBulkSelect` function is not available.

Meta: https://meta.discourse.org/t/select-all-in-group-assigned-doesnt-work/205270
This commit is contained in:
Krzysztof Kotlarek 2021-10-06 16:18:16 +11:00 committed by GitHub
parent cb5b0cb9d8
commit 6f76fb960b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,6 +165,10 @@ export default Component.extend(LoadMore, {
);
},
updateAutoAddTopicsToBulkSelect(newVal) {
this.set("autoAddTopicsToBulkSelect", newVal);
},
click(e) {
let self = this;
let onClick = function (sel, callback) {