Show newest actionable events on top to prevent misclicks

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
evanpelle
2026-06-10 19:04:04 -07:00
parent 9189aac687
commit a39413c947
+1 -1
View File
@@ -303,7 +303,7 @@ export class ActionableEvents extends LitElement implements Controller {
const aPrior = a.priority ?? 100000;
const bPrior = b.priority ?? 100000;
if (aPrior === bPrior) {
return a.createdAt - b.createdAt;
return b.createdAt - a.createdAt;
}
return bPrior - aPrior;
});