fix: [helpers:bootstrap] Support of cell variant in table
parent
ad3e89199b
commit
b01d75aaa6
|
@ -803,7 +803,7 @@ class BoostrapListTable extends BootstrapGeneric {
|
||||||
return $this->genNode('td', [
|
return $this->genNode('td', [
|
||||||
'class' => [
|
'class' => [
|
||||||
'col-sm-10',
|
'col-sm-10',
|
||||||
!empty($row['_cellVariant']) ? "bg-{$row['_cellVariant']}" : ''
|
!empty($field['_cellVariant']) ? "bg-{$field['_cellVariant']}" : ''
|
||||||
]
|
]
|
||||||
], $cellContent);
|
], $cellContent);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue