fix: [helpers:bootstrap] Support of cell variant in table

cli-modification-summary
Sami Mokaddem 2022-02-07 13:25:33 +01:00
parent ad3e89199b
commit b01d75aaa6
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 1 additions and 1 deletions

View File

@ -803,7 +803,7 @@ class BoostrapListTable extends BootstrapGeneric {
return $this->genNode('td', [
'class' => [
'col-sm-10',
!empty($row['_cellVariant']) ? "bg-{$row['_cellVariant']}" : ''
!empty($field['_cellVariant']) ? "bg-{$field['_cellVariant']}" : ''
]
], $cellContent);
}