(function Card(
/**
@@ -18,7 +22,7 @@ export type PromotionCardProps = {
* Remember to wrap in ul and li if in a list.
* */
const PromotionCard = forwardRef(function PromotionCard(
- { data, className = '', variant = 'default', hasSectionTitle = true },
+ { data, className = '', imageClassName = '', titleClassName = '', variant = 'default', hasSectionTitle = true },
ref,
) {
const isMobile = useMediaQuery(`(max-width: 768px)`)
@@ -31,6 +35,7 @@ const PromotionCard = forwardRef(function
image={heroImage?.image}
variant={variant === 'single' && !isMobile ? 'single' : 'primary'}
className={twMerge(`w-full h-full`, className)}
+ imageClassName={imageClassName}
key={id}
>
@@ -47,6 +52,7 @@ const PromotionCard = forwardRef(function
{...(publishDateTime && {
eyebrow: ,
})}
+ titleClassName={titleClassName}
/>
{ingress && (
Date: Mon, 20 Jan 2025 16:24:52 +0530
Subject: [PATCH 14/14] =?UTF-8?q?=F0=9F=92=9A=20Fix=20after=20upgrade=20to?=
=?UTF-8?q?=20upload=20artifact=20action=20(#2742)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.github/workflows/dataset-backup.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/dataset-backup.yaml b/.github/workflows/dataset-backup.yaml
index 05f049361..19005e93b 100644
--- a/.github/workflows/dataset-backup.yaml
+++ b/.github/workflows/dataset-backup.yaml
@@ -76,7 +76,7 @@ jobs:
id: upload-backup
uses: actions/upload-artifact@v4
with:
- name: backup-tarball
+ name: backup-tarball-${{ matrix.dataset}}
path: ${{ env.BUILD_ARTIFACT_PATH }}/${{ matrix.dataset }}.tar.gz
# Fails the workflow if no files are found; defaults to 'warn'
if-no-files-found: error