This commit is contained in:
Lemuel Marquez
2021-01-18 15:14:09 -06:00
parent bc4e1bfc85
commit 64bd4ed740
+1 -1
View File
@@ -319,7 +319,7 @@ const carpetasRepetidas = async () => {
if (res[i].mimeType === 'application/vnd.google-apps.folder')
data.push(res[i]);
data.sort((a, b) => {
return a - b;
return a.name - b.name;
});
return data;
});