Skip to content

Commit

Permalink
fix: some bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Nov 30, 2024
1 parent af33e9d commit 1e166b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/services/packages_data_refresher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class PackagesDataRefresher {
'packageName',
packages.map((pkg) => ({
packageName: pkg.name,
githubStars: pkg.stars,
githubStars: pkg.stars || 0,
weeklyDownloads: pkg.downloads ? pkg.downloads : 0,
firstReleaseAt: pkg.firstReleaseAt ? DateTime.fromISO(pkg.firstReleaseAt) : null,
lastReleaseAt: pkg.lastReleaseAt ? DateTime.fromISO(pkg.lastReleaseAt) : null,
Expand Down
2 changes: 1 addition & 1 deletion inertia/assets/icons/adonis_icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion inertia/components/package_logo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defineProps<{
}>()
function iconPlaceholder({ category }: PackageInfo) {
return categories.find((c) => c.label === category)?.icon || 'i-fluent-emoji-package-24-regular'
return categories.find((c) => c.label === category)?.icon || 'i-carbon-ibm-data-product-exchange'
}
</script>

Expand Down

0 comments on commit 1e166b6

Please sign in to comment.