awcodes / filament-table-repeater

A modified version of the Filament Forms Repeater to display it as a table.
MIT License
194 stars 43 forks source link

Hidden Labels issue in (CheckboxList and radio buttons) #25

Closed SkeyPunyapal closed 1 year ago

SkeyPunyapal commented 1 year ago

if we use the radio button or checkbox list, and use hide labels then it is hiding the radios and checkboxes.

image

The solution is to change css slightly like

.filament-table-repeater-column.has-hidden-label label:not(.filament-forms-checkbox-list-component-option-label, .filament-forms-radio-component label)
{
/* css */
}

Thanks

awcodes commented 1 year ago

Thanks for the report.