fix: Donate历史

This commit is contained in:
Tim
2025-10-17 11:35:29 +08:00
parent 8643446d8b
commit d914579d64
8 changed files with 72 additions and 13 deletions

View File

@@ -412,6 +412,8 @@ const changeLogIcon = (l) => {
return 'check-one'
} else if (l.type === 'LOTTERY_RESULT') {
return 'gift'
} else if (l.type === 'DONATE') {
return 'financing'
} else {
return 'info'
}
@@ -436,6 +438,7 @@ const mapChangeLog = (l) => ({
newCategory: l.newCategory,
oldTags: l.oldTags,
newTags: l.newTags,
amount: l.amount,
icon: changeLogIcon(l),
})