Creator update frontend hotfixes (#1538)

* Fix donation link submission

* Refactor Charts to fit edgecase bugs in design

* edge and mobile bug fixes

* remove dead code

* fix width on mobile

* Update omorphia version to 0.7.3

* Refactor legend item styling in ChartDisplay.vue

* Update package dependencies
This commit is contained in:
Carter
2024-01-10 12:50:21 -08:00
committed by GitHub
parent 5924154a62
commit 81948a5c29
6 changed files with 1086 additions and 270 deletions

View File

@@ -210,6 +210,12 @@ export default defineNuxtComponent({
data.donation_urls = donationLinks
}
if (data.donation_urls) {
data.donation_urls.forEach((link) => {
link.id = link.platform.toLowerCase()
})
}
return data
},
hasChanges() {