Skip to content

Commit

Permalink
IE does on nonnumberic colspan
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Apr 8, 2020
1 parent cf8d36e commit 8de3ff4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages-premium
4 changes: 2 additions & 2 deletions packages/core/src/common/TableDateCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default class TableDateCell extends BaseComponent<TableDateCellProps> { /
ref={rootElRef}
className={classNames.concat(customClassNames).join(' ')}
data-date={!dayMeta.isDisabled ? formatDayString(date) : undefined}
colSpan={props.colSpan > 1 ? props.colSpan : undefined}
colSpan={props.colSpan}
{...props.extraDataAttrs}
>
<span
Expand Down Expand Up @@ -138,7 +138,7 @@ export class TableDowCell extends BaseComponent<TableDowCellProps> {
<th
ref={rootElRef}
className={classNames.concat(customClassNames).join(' ')}
colSpan={props.colSpan > 1 ? props.colSpan : undefined}
colSpan={props.colSpan}
{...props.extraDataAttrs}
>
<span
Expand Down

0 comments on commit 8de3ff4

Please sign in to comment.