Skip to content

Commit

Permalink
sort installed
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Apr 17, 2020
1 parent 5d48be1 commit b88f5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/panels/installed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export class HacsInstalled extends LitElement {
</div>
${categories[category]
.sort((a: RepositoryData, b: RepositoryData) =>
a.name > b.name ? 1 : -1
a.name.toLowerCase() > b.name.toLowerCase() ? 1 : -1
)
.map(repository => {
return builder.render(repository);
Expand Down

0 comments on commit b88f5e8

Please sign in to comment.