Overlay Sorting fix

pull/1/head
Dennis-Gireesh 2021-07-15 13:08:22 -04:00
parent 09802a6fc3
commit 02a077fb37
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ export default class Overlays {
this.getOverlayList().forEach((overlay) => {
overlaysName.push(overlay.name);
});
return overlaysName;
return overlaysName.sort();
};
this.getOverlay = (overlay) => {