Skip to content

Commit

Permalink
Switching checkbox to text input
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-bizz committed Oct 30, 2023
1 parent 832b411 commit 82e4ae5
Showing 1 changed file with 8 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,13 @@
</div>

<div class="col-12 mb-2 mt-2">
<div class="pl-4" style="position: relative">
<input
id="{{ suggestionsWeightInputId }}"
type="checkbox"
class="custom-control-input"
placeholder="1.0"
[(ngModel)]="suggestionsWeight"
(ngModelChange)="handleSuggestionsWeight($event)"
/>
<label class="custom-control-label" for="{{ suggestionsWeightInputId }}"
>Suggestions Weight</label
>
</div>
<label for="{{ suggestionsWeightInputId }}">Suggestions Weight</label>
<input
id="{{ suggestionsWeightInputId }}"
class="form-control"
placeholder="1.0"
[(ngModel)]="suggestionsWeight"
(ngModelChange)="handleSuggestionsWeight($event)"
/>
</div>
</div>

0 comments on commit 82e4ae5

Please sign in to comment.