Compare commits

..

No commits in common. "dd5add96b482ac89a8a6f078f9702efbd895174a" and "1b058ce86233eeb5e8cc924cd32f54656e8bd923" have entirely different histories.

2 changed files with 5 additions and 2 deletions

View file

@ -487,12 +487,15 @@ i.info {
padding: 0 5px;
}
.flat-tabs {
display: flex;
display: none;
justify-content: space-around;
font-size: 1.2em;
margin-bottom: 20px;
border-bottom: 1px solid #bebebe;
}
.flat-tabs:has(.flat) {
display: flex;
}
.flat-tabs button {
padding: 10px;
text-decoration: none;

View file

@ -805,7 +805,7 @@ Fields.IconUrl = class extends Fields.BlurInput {
categories[category] = categories[category] || []
categories[category].push(props)
}
const sorted = Object.entries(categories).sort(([a], [b]) =>
const sorted = Object.entries(categories).toSorted(([a], [b]) =>
Utils.naturalSort(a, b, U.lang)
)
for (const [name, items] of sorted) {