We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4fe495c + 8321c39 commit 56db452Copy full SHA for 56db452
src/components/pages/NoticePage.ts
@@ -166,7 +166,9 @@ export class NoticePage extends Page {
166
<dt class="font-medium text-neutral-400">Affected services</dt>
167
<dd>
168
<ul class="flex gap-1 flex-wrap">
169
- ${this.notice.components.map((c) =>
+ ${this.notice.components.sort((a, b) => a.order - b.order).map((
170
+ c,
171
+ ) =>
172
html`
173
<li class="text-sm text-neutral-300 rounded-full bg-white/10 px-2 py-0.5">
174
${c.name.default}
0 commit comments