Skip to content

Commit 58f842f

Browse files
committed
fix: misc fixes
1 parent c12d625 commit 58f842f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
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

app/components/projects/GitHubGridCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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="{

app/pages/blog/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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>

app/pages/index.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)