[GH-ISSUE #253] The select all button is not working anymore #317

Open
opened 2026-03-07 20:16:20 +03:00 by kerem · 5 comments
Owner

Originally created by @leonardo73-max on GitHub (Oct 25, 2025).
Original GitHub issue: https://github.com/davidarroyo1234/InstagramUnfollowers/issues/253

Hi there, the select all button is not working anymore, tried both on Chromium and Chrome

Originally created by @leonardo73-max on GitHub (Oct 25, 2025). Original GitHub issue: https://github.com/davidarroyo1234/InstagramUnfollowers/issues/253 Hi there, the select all button is not working anymore, tried both on Chromium and Chrome
Author
Owner

@davidarroyo1234 commented on GitHub (Nov 1, 2025):

Hi there, the select all button is not working anymore, tried both on Chromium and Chrome

Did the process end or pause? if its still running you will not be able to select all

<!-- gh-comment-id:3476433472 --> @davidarroyo1234 commented on GitHub (Nov 1, 2025): > Hi there, the select all button is not working anymore, tried both on Chromium and Chrome Did the process end or pause? if its still running you will not be able to select all
Author
Owner

@leonardo73-max commented on GitHub (Nov 2, 2025):

the search process ended but the top violet bar gets stuck at the end.

If anyone is interested, I found a quick fix for the “Select all” checkboxes not working when the scan never reaches 100%.
When the scan stalls (progress bar < 100%), the two header checkboxes stay disabled, so you can’t check “Select all on this page” or “Select all”.

“Select all on this page” checkbox

Find:

title:"Select all on this page",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:i

Replace with:
title:"Select all on this page",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getCurrentPageUnfollowers)((0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter),n.page);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:i

"Select all” checkbox
Find:
title:"Select all",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:l

Replace with:
title:"Select all",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:l

Removes the hard disable so the header checkboxes work even if scanning isn’t complete and gets stuck at the end.
After this, the two header checkboxes work reliably even if the scan gets stuck before 100%, which happens quite often lately

<!-- gh-comment-id:3478028830 --> @leonardo73-max commented on GitHub (Nov 2, 2025): the search process ended but the top violet bar gets stuck at the end. If anyone is interested, I found a quick fix for the “Select all” checkboxes not working when the scan never reaches 100%. When the scan stalls (progress bar < 100%), the two header checkboxes stay disabled, so you can’t check “Select all on this page” or “Select all”. “Select all on this page” checkbox Find: title:"Select all on this page",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:i Replace with: title:"Select all on this page",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getCurrentPageUnfollowers)((0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter),n.page);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:i "Select all” checkbox Find: title:"Select all",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:l Replace with: title:"Select all",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:l Removes the hard disable so the header checkboxes work even if scanning isn’t complete and gets stuck at the end. After this, the two header checkboxes work reliably even if the scan gets stuck before 100%, which happens quite often lately
Author
Owner

@agusdimarioUCC commented on GitHub (Nov 6, 2025):

same issue here, can't "select all" because the progress bar isn't complete even after the search is finished

<!-- gh-comment-id:3497655928 --> @agusdimarioUCC commented on GitHub (Nov 6, 2025): same issue here, can't "select all" because the progress bar isn't complete even after the search is finished
Author
Owner

@agusdimarioUCC commented on GitHub (Nov 6, 2025):

the search process ended but the top violet bar gets stuck at the end.

If anyone is interested, I found a quick fix for the “Select all” checkboxes not working when the scan never reaches 100%. When the scan stalls (progress bar < 100%), the two header checkboxes stay disabled, so you can’t check “Select all on this page” or “Select all”.

“Select all on this page” checkbox

Find:

title:"Select all on this page",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:i

Replace with: title:"Select all on this page",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getCurrentPageUnfollowers)((0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter),n.page);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:i

"Select all” checkbox Find: title:"Select all",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:l

Replace with: title:"Select all",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:l

Removes the hard disable so the header checkboxes work even if scanning isn’t complete and gets stuck at the end. After this, the two header checkboxes work reliably even if the scan gets stuck before 100%, which happens quite often lately

thanks!

<!-- gh-comment-id:3497657997 --> @agusdimarioUCC commented on GitHub (Nov 6, 2025): > the search process ended but the top violet bar gets stuck at the end. > > If anyone is interested, I found a quick fix for the “Select all” checkboxes not working when the scan never reaches 100%. When the scan stalls (progress bar < 100%), the two header checkboxes stay disabled, so you can’t check “Select all on this page” or “Select all”. > > “Select all on this page” checkbox > > Find: > > title:"Select all on this page",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:i > > Replace with: title:"Select all on this page",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getCurrentPageUnfollowers)((0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter),n.page);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:i > > "Select all” checkbox Find: title:"Select all",type:"checkbox",disabled:n.percentage<100&&!a,checked:n.selectedResults.length===(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter).length,className:"toggle-all-checkbox",onClick:l > > Replace with: title:"Select all",type:"checkbox",disabled:!1,checked:(function(){var e=(0,c.getUsersForDisplay)(n.results,n.whitelistedResults,n.currentTab,n.searchTerm,n.filter);return e.length>0&&e.every(function(e){return-1!==n.selectedResults.indexOf(e)})})(),className:"toggle-all-checkbox",onClick:l > > Removes the hard disable so the header checkboxes work even if scanning isn’t complete and gets stuck at the end. After this, the two header checkboxes work reliably even if the scan gets stuck before 100%, which happens quite often lately thanks!
Author
Owner

@Kl4rkx commented on GitHub (Dec 7, 2025):

Thanks for reporting this! The issue with the "Select All" button has been fixed in afd6141. It should now work correctly on both Chromium and Chrome.

<!-- gh-comment-id:3622483637 --> @Kl4rkx commented on GitHub (Dec 7, 2025): Thanks for reporting this! The issue with the "Select All" button has been fixed in [afd6141](https://github.com/davidarroyo1234/InstagramUnfollowers/commit/afd6141d68576630227f422491d4a5bd5d1f2793). It should now work correctly on both Chromium and Chrome.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/InstagramUnfollowers#317
No description provided.