فهرست منبع

refs 120355: fix col bug

Futa Arai 3 سال پیش
والد
کامیت
245206c978
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/remark-attachment-refs/src/client/components/Gallery.tsx

+ 1 - 1
packages/remark-attachment-refs/src/client/components/Gallery.tsx

@@ -7,7 +7,7 @@ export const Gallery = React.memo((props: Props): JSX.Element => {
 });
 
 export const GalleryImmutable = React.memo((props: Omit<Props, 'isImmutable'>): JSX.Element => {
-  const grid = props.grid || 'col4';
+  const grid = props.grid || 'col-4';
   const gridGap = props.gridGap || '1px';
   return <RefsImgSubstance grid={grid} gridGap={gridGap} {...props} isImmutable />;
 });