You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this.hardCodedURLsViewData=hardCodedURLsViewData;// no need to sort as the data will be shown in an extendetible table (which will be sorted by countBad desc by default)
1952
-
this.hardCodedURLsViewItemsExport=sheets;
1955
+
this.hardCodedURLsViewData=hardCodedURLsViewData;// no need to sort
1956
+
this.hardCodedURLsViewItemsExport=sheets.sort((a,b)=>(a?.rows?.length??0)<(b?.rows?.length??0) ? 1 : -1);// sorted by Nb Rows
0 commit comments