diff --git a/src/Table/Column/Checkbox.php b/src/Table/Column/Checkbox.php index c438b0a187..2997e0cd5a 100644 --- a/src/Table/Column/Checkbox.php +++ b/src/Table/Column/Checkbox.php @@ -57,6 +57,6 @@ public function getHeaderCellHtml(Field $field = null, $value = null): string #[\Override] public function getDataCellTemplate(Field $field = null): string { - return $this->getApp()->getTag('div', ['class' => 'ui checkbox ' . $this->class], [['input/', ['type' => 'checkbox']]]); + return $this->getApp()->getTag('div', ['class' => 'ui fitted checkbox ' . $this->class], [['input/', ['type' => 'checkbox']]]); } }