Browse Source

Merge pull request #4027 from nocodb/fix/gallery-error

pull/4030/head
Braks 2 years ago committed by GitHub
parent
commit
bf8cb25c2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/smartsheet/Gallery.vue
  2. 2
      packages/nc-gui/components/smartsheet/Kanban.vue

2
packages/nc-gui/components/smartsheet/Gallery.vue

@ -177,7 +177,7 @@ watch(view, async (nextView) => {
class="!rounded-lg h-full overflow-hidden break-all max-w-[450px]"
@click="expandFormClick($event, record)"
>
<template v-if="galleryData.fk_cover_image_col_id" #cover>
<template v-if="galleryData?.fk_cover_image_col_id" #cover>
<a-carousel v-if="!reloadAttachments && attachments(record).length" autoplay class="gallery-carousel" arrows>
<template #customPaging>
<a>

2
packages/nc-gui/components/smartsheet/Kanban.vue

@ -430,7 +430,7 @@ watch(view, async (nextView) => {
@click="expandFormClick($event, record)"
@contextmenu="showContextMenu($event, record)"
>
<template v-if="kanbanMetaData.fk_cover_image_col_id" #cover>
<template v-if="kanbanMetaData?.fk_cover_image_col_id" #cover>
<a-carousel
v-if="!reloadAttachments && attachments(record).length"
autoplay

Loading…
Cancel
Save