* fix: 5258

* fix: lint
This commit is contained in:
Calum H.
2026-02-06 18:21:41 +00:00
committed by GitHub
parent 510ea6cde4
commit 8789d7b057

View File

@@ -43,7 +43,7 @@
<XCircleIcon v-else-if="item.type === 'error'" class="h-6 w-6" />
<InfoIcon v-else class="h-6 w-6" />
</div>
<div class="m-0 text-wrap font-bold text-contrast" v-html="item.title"></div>
<div class="m-0 text-wrap font-bold text-contrast">{{ item.title }}</div>
<div class="flex items-center gap-1">
<div v-if="item.count && item.count > 1" class="text-xs font-bold text-contrast">
x{{ item.count }}
@@ -66,13 +66,12 @@
</ButtonStyled>
</div>
<div></div>
<div class="col-span-2 text-sm text-primary" v-html="item.text"></div>
<div class="col-span-2 text-sm text-primary">{{ item.text }}</div>
<template v-if="item.errorCode">
<div></div>
<div
class="m-0 text-wrap text-xs font-medium text-secondary"
v-html="item.errorCode"
></div>
<div class="m-0 text-wrap text-xs font-medium text-secondary">
{{ item.errorCode }}
</div>
</template>
</div>
</div>