mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 00:06:01 +00:00
SSL support
This commit is contained in:
@@ -119,7 +119,7 @@ export function FormCheckboxField({ label, templateProps = undefined, ...other }
|
||||
<FieldTemplate
|
||||
label={label}
|
||||
type="checkbox"
|
||||
onLabelClick={() => setFieldValue(other.name, !values[other.name])}
|
||||
onLabelClick={other.disabled ? undefined : () => setFieldValue(other.name, !values[other.name])}
|
||||
{...templateProps}
|
||||
>
|
||||
<FormCheckboxFieldRaw {...other} />
|
||||
|
||||
Reference in New Issue
Block a user