Browse Source

fix: app store image path correction (#8575)

pull/8579/head
Pranav C 4 months ago committed by GitHub
parent
commit
7b694af26a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nc-gui/components/dashboard/settings/app-store/AppInstall.vue

2
packages/nc-gui/components/dashboard/settings/app-store/AppInstall.vue

@ -147,7 +147,7 @@ onMounted(async () => {
class="mr-1 flex items-center justify-center"
:class="[plugin.title === 'SES' ? 'p-2 bg-[#242f3e]' : '']"
>
<img :alt="plugin.title || 'plugin'" :src="`/${plugin.logo}`" class="h-6" />
<img :alt="plugin.title || 'plugin'" :src="plugin.logo" class="h-6" />
</div>
<span class="font-semibold text-lg">{{ plugin.formDetails.title }}</span>

Loading…
Cancel
Save