fix: feature flag checkbox name
This commit is contained in:
parent
5ef3548ecf
commit
3b2a863b6c
1 changed files with 5 additions and 1 deletions
|
@ -24,7 +24,11 @@ const { toggle } = Astro.props;
|
||||||
(settings, index) =>
|
(settings, index) =>
|
||||||
settings !== "" && (
|
settings !== "" && (
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<input type="checkbox" id={`settings-${index}`} name="settings-2" />
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
id={`settings-${index}`}
|
||||||
|
name={`settings-${index}`}
|
||||||
|
/>
|
||||||
<label for={`settings-${index}`}>{featureLabels[settings]}</label>
|
<label for={`settings-${index}`}>{featureLabels[settings]}</label>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue