Skip to content

Commit

Permalink
fix to like dislike being switched
Browse files Browse the repository at this point in the history
  • Loading branch information
huygensCortex committed Oct 19, 2023
1 parent 75020ea commit d6e9cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/recommenderapp/static/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ $(document).ready(function () {
<tr>
<td class='radio-inline'>
<section id="pattern1">
<label style="--icon:'😍"><input type="radio" name="${i}" value='1' data-toggle="tooltip" data-placement="top" title="LIKE"></label><br />
<label style="--icon:'😍"><input type="radio" name="${i}" value='3' data-toggle="tooltip" data-placement="top" title="LIKE"></label><br />
</section>
</td>
<td class='radio-inline'>
Expand All @@ -93,7 +93,7 @@ $(document).ready(function () {
</td>
<td class='radio-inline'>
<section id="pattern1">
<label style="--icon:'😤'"><input type="radio" name="${i}" value='3' data-toggle="tooltip" data-placement="top" title="DISLIKE"></label><br />
<label style="--icon:'😤'"><input type="radio" name="${i}" value='1' data-toggle="tooltip" data-placement="top" title="DISLIKE"></label><br />
</section>
</td>
</tr>
Expand Down

0 comments on commit d6e9cb1

Please sign in to comment.