fix: reverse history order
Deploy / Build (push) Has been cancelled
Deploy / Deploy to Stapler (push) Has been cancelled
Lint / ESLint (push) Has been cancelled
Lint / Oxlint (push) Has been cancelled
Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-06-17 17:33:15 +02:00
parent a10b8bd7d1
commit b6350f9a34
+5 -1
View File
@@ -7,7 +7,11 @@ defineProps<{ factory: DomainFactory }>();
<template>
<div>
<p v-for="(domain, i) in factory.history" :key="`domain-${i}`" class="pt-3">
<p
v-for="(domain, i) in factory.history.slice().reverse()"
:key="`domain-${i}`"
class="pt-3"
>
<CoolDomain
:id="domain.name + domain.searching + domain.available"
:domain="domain"