Skip to content

Commit

Permalink
Fixes #142, checkboxes on device edit form not being respected
Browse files Browse the repository at this point in the history
  • Loading branch information
i8beef committed Oct 14, 2023
1 parent f45b883 commit cdfc6e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/HomeAutio.Mqtt.GoogleHome/Views/GoogleDevice/Edit.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@
</div>
<div class="mb-3">
<div class="form-check">
<input form="createForm" class="form-check-input" asp-for="Disabled" type="checkbox" />
<input form="editForm" class="form-check-input" asp-for="Disabled" type="checkbox" />
<label class="form-check-label" asp-for="Disabled">
Disabled
</label>
</div>
</div>
<div class="mb-3">
<div class="form-check">
<input form="createForm" class="form-check-input" asp-for="WillReportState" type="checkbox" />
<input form="editForm" class="form-check-input" asp-for="WillReportState" type="checkbox" />
<label class="form-check-label" asp-for="WillReportState">
Will Report State
</label>
Expand Down

0 comments on commit cdfc6e6

Please sign in to comment.