@visns-studio/visns-components 3.7.11 → 3.7.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/crm/Field.jsx +4 -1
- package/package.json +1 -1
package/components/crm/Field.jsx
CHANGED
|
@@ -374,7 +374,10 @@ function Field({
|
|
|
374
374
|
) : null;
|
|
375
375
|
case 'checkbox':
|
|
376
376
|
return settings.options?.length > 0 ? (
|
|
377
|
-
<div
|
|
377
|
+
<div
|
|
378
|
+
className="fi__optionscontainer"
|
|
379
|
+
style={{ paddingTop: '10px' }}
|
|
380
|
+
>
|
|
378
381
|
{settings.options.map((option, index) => (
|
|
379
382
|
<div
|
|
380
383
|
key={`${settings.id}-checkbox-option-${index}`}
|
package/package.json
CHANGED