Skip to content

Commit

Permalink
Fix: Workspace avatar URL (#3749)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikehrn authored Dec 23, 2024
1 parent bb1a531 commit 6e92d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend-2/components/workspace/Avatar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
>
<div
class="h-full w-full bg-cover bg-center bg-no-repeat flex items-center justify-center"
:style="{ backgroundImage: `url('${logo}')` }"
:style="logo ? { backgroundImage: `url('${logo}')` } : undefined"
>
<span v-if="!logo" class="text-foreground-3 uppercase leading-none">
{{ name[0] }}
Expand Down

0 comments on commit 6e92d12

Please sign in to comment.