From 94544e9e85c07874f99f7475bd0e0c2729304c2c Mon Sep 17 00:00:00 2001 From: Helmut Hackbarth Date: Sat, 30 Apr 2022 15:53:41 +0200 Subject: [PATCH] BUGFIX: https://github.com/t3solution/t3sbootstrap/issues/201 --- Classes/Components/Card.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Components/Card.php b/Classes/Components/Card.php index c4bb265b..20866a19 100644 --- a/Classes/Components/Card.php +++ b/Classes/Components/Card.php @@ -113,7 +113,7 @@ public function getProcessedData(array $processedData, array $flexconf): array } // class $cardClass = 'card'; - $cardClass = $processedData['class']; + $cardClass .= $processedData['class']; $cardClass .= !empty($parentflexconf['equalHeight']) ? ' h-100' : ''; if ( $processedData['data']['tx_t3sbootstrap_textcolor'] ) {