Skip to content
Snippets Groups Projects

Main

Closed Eryk Mika requested to merge main into just_for_review
All threads resolved!
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
@@ -385,9 +385,9 @@ export default function FlexibleTable({attributes, setAttributes, placeholders,
</thead>
<tbody className={"fitb-item-table-body"}>
{Array.from({length: 2}).map((_, index) => (
{Array.from({length: 2}).map((_, trIndex) => (
<tr className={"fitb-item-table-row"} style={{
background: (multipleBodyBackground && index === 1) ? bodyBackgroundOdd : bodyBackground,
background: (multipleBodyBackground && trIndex === 1) ? bodyBackgroundOdd : bodyBackground,
borderStyle: "solid",
borderColor: bodyBorderRowColor,
borderTopWidth: bodyBorderRowWidthTop,
@@ -411,7 +411,7 @@ export default function FlexibleTable({attributes, setAttributes, placeholders,
key={index}
value={row}
style={{
color: (multipleBodyBackground && index === 1) ? bodyTextColorOdd : bodyTextColor,
color: (multipleBodyBackground && trIndex === 1) ? bodyTextColorOdd : bodyTextColor,
textAlign: bodyTextAlign,
fontStyle: bodyFontStyle,
fontSize: bodyFontSize,
Loading