File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 4747 NUXT_PUBLIC_ASSET_KEY : ${{ secrets.NUXT_PUBLIC_ASSET_KEY }}
4848
4949 - name : Push assets
50- run : bun run ftp:assets:push
50+ run : bun run ftp:assets:push --force
5151 env :
5252 REMOTE_CONNECTION : ${{ secrets.REMOTE_CONNECTION }}
5353
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const props = defineProps<GitHubGridCardProps>()
2525 <UUser
2626 :name =" useStyleName(props.name)"
2727 :description =" props.description || undefined"
28- :avatar =" props.owner"
28+ :avatar =" { src: useRuntimeConfig().public.siteUrl + props.owner?.src, alt: props.owner?.alt } "
2929 class =" relative"
3030 orientation =" horizontal"
3131 :ui =" {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ useSeoMeta({
1515})
1616
1717// TODO: Figure out OgImage component usage in static builds
18- if (import .meta .client ) defineOgImageComponent (' myOgImage' )
18+ // if (import.meta.client) defineOgImageComponent('myOgImage')
1919 </script >
2020
2121<template >
Original file line number Diff line number Diff line change @@ -145,7 +145,8 @@ onMounted(async () => {
145145 class =" flex items-center"
146146 >
147147 <UAvatar
148- v-bind =" item.avatar"
148+ :src =" useRuntimeConfig().public.siteUrl + item.avatar?.src"
149+ :alt =" item.avatar?.alt"
149150 class =" mr-2"
150151 />
151152 <span >{{ item.avatar?.alt }}</span >
@@ -181,7 +182,8 @@ onMounted(async () => {
181182 class =" flex items-center"
182183 >
183184 <UAvatar
184- v-bind =" item.avatar"
185+ :src =" useRuntimeConfig().public.siteUrl + item.avatar?.src"
186+ :alt =" item.avatar?.alt"
185187 class =" mr-2"
186188 />
187189 <span >{{ item.avatar?.alt }}</span >
You can’t perform that action at this time.
0 commit comments