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 47
47
NUXT_PUBLIC_ASSET_KEY : ${{ secrets.NUXT_PUBLIC_ASSET_KEY }}
48
48
49
49
- name : Push assets
50
- run : bun run ftp:assets:push
50
+ run : bun run ftp:assets:push --force
51
51
env :
52
52
REMOTE_CONNECTION : ${{ secrets.REMOTE_CONNECTION }}
53
53
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const props = defineProps<GitHubGridCardProps>()
25
25
<UUser
26
26
:name =" useStyleName(props.name)"
27
27
:description =" props.description || undefined"
28
- :avatar =" props.owner"
28
+ :avatar =" { src: useRuntimeConfig().public.siteUrl + props.owner?.src, alt: props.owner?.alt } "
29
29
class =" relative"
30
30
orientation =" horizontal"
31
31
:ui =" {
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ useSeoMeta({
15
15
})
16
16
17
17
// TODO: Figure out OgImage component usage in static builds
18
- if (import .meta .client ) defineOgImageComponent (' myOgImage' )
18
+ // if (import.meta.client) defineOgImageComponent('myOgImage')
19
19
</script >
20
20
21
21
<template >
Original file line number Diff line number Diff line change @@ -145,7 +145,8 @@ onMounted(async () => {
145
145
class =" flex items-center"
146
146
>
147
147
<UAvatar
148
- v-bind =" item.avatar"
148
+ :src =" useRuntimeConfig().public.siteUrl + item.avatar?.src"
149
+ :alt =" item.avatar?.alt"
149
150
class =" mr-2"
150
151
/>
151
152
<span >{{ item.avatar?.alt }}</span >
@@ -181,7 +182,8 @@ onMounted(async () => {
181
182
class =" flex items-center"
182
183
>
183
184
<UAvatar
184
- v-bind =" item.avatar"
185
+ :src =" useRuntimeConfig().public.siteUrl + item.avatar?.src"
186
+ :alt =" item.avatar?.alt"
185
187
class =" mr-2"
186
188
/>
187
189
<span >{{ item.avatar?.alt }}</span >
You can’t perform that action at this time.
0 commit comments